From 4115b9b7f43d61d6e8d3ccf11d0609d4d8138b2f Mon Sep 17 00:00:00 2001 From: mertmit Date: Mon, 11 Dec 2023 15:58:37 +0000 Subject: [PATCH] fix: group by null check --- packages/nc-gui/composables/useViewGroupBy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/composables/useViewGroupBy.ts b/packages/nc-gui/composables/useViewGroupBy.ts index 03534ac165..cfc35667dd 100644 --- a/packages/nc-gui/composables/useViewGroupBy.ts +++ b/packages/nc-gui/composables/useViewGroupBy.ts @@ -91,7 +91,7 @@ export const useViewGroupBy = (view: Ref, where?: Computed } if (col.uidt === UITypes.User) { - if (!value.length) { + if (!value) { return GROUP_BY_VARS.NULL } }