- Fix Legacy bug of 'Card Settings' button, only opening, and not toggling, the card Settings

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-05-23 15:20:04 -04:00
parent 296afdbeee
commit dc0147c5f9

View File

@@ -117,7 +117,7 @@ export default function ProductionBoardKanbanCardSettings({ associationSettings
);
return (
<Popover content={overlay} open={open} placement="topRight">
<Button loading={loading} onClick={() => setOpen(true)}>
<Button loading={loading} onClick={() => setOpen(!open)}>
{t("production.labels.cardsettings")}
</Button>
</Popover>