Fix filter by url (#9247)

Filters coming from url should be parsed properly when using the new
relation schema format
This commit is contained in:
Thomas Trompette
2024-12-27 10:02:12 +01:00
committed by GitHub
parent b91656eb5d
commit a653488b17
3 changed files with 15 additions and 12 deletions

View File

@ -94,7 +94,7 @@ export const ObjectFilterDropdownRecordSelect = ({
const currentWorkspaceMemberSelectableItem: SelectableItem = {
id: CURRENT_WORKSPACE_MEMBER_SELECTABLE_ITEM_ID,
name: 'Me',
isSelected: isCurrentWorkspaceMemberSelected,
isSelected: isCurrentWorkspaceMemberSelected ?? false,
AvatarIcon: IconUserCircle,
};