Skip to content

Commit

Permalink
should be disabled when mode = UNSYNCED (#24911) (#25011)
Browse files Browse the repository at this point in the history
fixes: #24261

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
Co-authored-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
  • Loading branch information
jonkoops and edewit authored Nov 27, 2023
1 parent 4252e39 commit c67aa68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const ExtendedHeader = ({
</DropdownItem>,
<DropdownItem
key="unlink"
isDisabled={editMode ? !editMode.includes("UNSYNCED") : false}
isDisabled={editMode ? editMode.includes("UNSYNCED") : false}
onClick={toggleUnlinkUsersDialog}
>
{t("unlinkUsers")}
Expand Down

0 comments on commit c67aa68

Please sign in to comment.