fix: not able to filter by nullable values (#2580)
Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@ -12,7 +12,7 @@ export const useCurrentUserTaskCount = () => {
|
||||
objectNamePlural: 'activities',
|
||||
filter: {
|
||||
type: { eq: 'Task' },
|
||||
completedAt: { eq: null },
|
||||
completedAt: { is: 'NULL' },
|
||||
assigneeId: { eq: currentWorkspaceMember?.id },
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user