Browse Source

chore(nc-gui): remove showNullAndEmptyInFilter from useGlobal

pull/5106/head
Wing-Kam Wong 2 years ago
parent
commit
b45c9a4642
  1. 1
      packages/nc-gui/composables/useGlobal/state.ts
  2. 1
      packages/nc-gui/composables/useGlobal/types.ts

1
packages/nc-gui/composables/useGlobal/state.ts

@ -63,7 +63,6 @@ export function useGlobalState(storageKey = 'nocodb-gui-v2'): State {
previewAs: null,
includeM2M: false,
showNull: false,
showNullAndEmptyInFilter: false,
currentVersion: null,
latestRelease: null,
hiddenRelease: null,

1
packages/nc-gui/composables/useGlobal/types.ts

@ -31,7 +31,6 @@ export interface StoredState {
previewAs: ProjectRole | null
includeM2M: boolean
showNull: boolean
showNullAndEmptyInFilter: boolean
currentVersion: string | null
latestRelease: string | null
hiddenRelease: string | null

Loading…
Cancel
Save