Enable optimistic rendering for pipeline stages (#1139)

This commit is contained in:
Emilien Chauvet
2023-08-09 20:07:11 +02:00
committed by GitHub
parent db8a176342
commit fbac345164
7 changed files with 31 additions and 45 deletions

View File

@ -23,15 +23,13 @@ const StyledMenuContainer = styled.div`
type OwnProps = {
onClose: () => void;
title: string;
color?: string;
onTitleEdit: (title: string) => void;
onColumnColorEdit: (color: string) => void;
color: string;
onTitleEdit: (title: string, color: string) => void;
};
export function BoardColumnMenu({
onClose,
onTitleEdit,
onColumnColorEdit,
title,
color,
}: OwnProps) {
@ -66,7 +64,6 @@ export function BoardColumnMenu({
color={color}
onClose={onClose}
onTitleEdit={onTitleEdit}
onColumnColorEdit={onColumnColorEdit}
title={title}
/>
)}