Browse Source

feat(nc-gui): exclude null & empty for UITypes.Lookup

pull/5106/head
Wing-Kam Wong 2 years ago
parent
commit
43daa9f38f
  1. 4
      packages/nc-gui/utils/filterUtils.ts

4
packages/nc-gui/utils/filterUtils.ts

@ -94,6 +94,7 @@ export const comparisonOpList = (
UITypes.Collaborator, UITypes.Collaborator,
UITypes.Attachment, UITypes.Attachment,
UITypes.LinkToAnotherRecord, UITypes.LinkToAnotherRecord,
UITypes.Lookup,
...numericUITypes, ...numericUITypes,
], ],
}, },
@ -108,6 +109,7 @@ export const comparisonOpList = (
UITypes.Collaborator, UITypes.Collaborator,
UITypes.Attachment, UITypes.Attachment,
UITypes.LinkToAnotherRecord, UITypes.LinkToAnotherRecord,
UITypes.Lookup,
...numericUITypes, ...numericUITypes,
], ],
}, },
@ -123,6 +125,7 @@ export const comparisonOpList = (
UITypes.Collaborator, UITypes.Collaborator,
UITypes.Attachment, UITypes.Attachment,
UITypes.LinkToAnotherRecord, UITypes.LinkToAnotherRecord,
UITypes.Lookup,
], ],
}, },
{ {
@ -137,6 +140,7 @@ export const comparisonOpList = (
UITypes.Collaborator, UITypes.Collaborator,
UITypes.Attachment, UITypes.Attachment,
UITypes.LinkToAnotherRecord, UITypes.LinkToAnotherRecord,
UITypes.Lookup,
], ],
}, },
{ {

Loading…
Cancel
Save