Skip to content

Commit

Permalink
Merge pull request #2428 from ever-co/2386-bug-on-create-task-select-…
Browse files Browse the repository at this point in the history
…color-dropdown

fix(Color): z-index added for color dropdown
  • Loading branch information
evereq authored Apr 27, 2024
2 parents c368114 + 29a691c commit 51af353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/lib/components/Kanban.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const EmptyKanbanDroppable = ({
}, []);

const { isOpen, closeModal, openModal } = useModal();
const { isOpen:editIsOpen, closeModal:editCloseModal, openModal:editOpenModal } = useModal();
const { isOpen: editIsOpen, closeModal: editCloseModal, openModal: editOpenModal } = useModal();

if (!enabled) return null;

Expand Down Expand Up @@ -312,7 +312,7 @@ export const EmptyKanbanDroppable = ({
<Modal isOpen={isOpen} closeModal={closeModal}>
<CreateTaskModal onClose={closeModal} title={title} initEditMode={false} task={null} tasks={[]} />
</Modal>
<Modal isOpen={editIsOpen} closeModal={editCloseModal}>
<Modal className="z-[5000]" isOpen={editIsOpen} closeModal={editCloseModal}>
<EditStatusModal status={status} onClose={editCloseModal} setColumn={setColumn} />
</Modal>
</>
Expand Down

0 comments on commit 51af353

Please sign in to comment.