Browse Source

fix: group by null check

pull/7202/head
mertmit 10 months ago
parent
commit
4115b9b7f4
  1. 2
      packages/nc-gui/composables/useViewGroupBy.ts

2
packages/nc-gui/composables/useViewGroupBy.ts

@ -91,7 +91,7 @@ export const useViewGroupBy = (view: Ref<ViewType | undefined>, where?: Computed
}
if (col.uidt === UITypes.User) {
if (!value.length) {
if (!value) {
return GROUP_BY_VARS.NULL
}
}

Loading…
Cancel
Save