diff --git a/packages/nc-gui/composables/useGlobal/state.ts b/packages/nc-gui/composables/useGlobal/state.ts index c04597652a..0567148619 100644 --- a/packages/nc-gui/composables/useGlobal/state.ts +++ b/packages/nc-gui/composables/useGlobal/state.ts @@ -101,6 +101,7 @@ export function useGlobalState(storageKey = 'nocodb-gui-v2'): State { ncAttachmentFieldSize: 20, ncMaxAttachmentsAllowed: 10, isCloud: false, + automationLogLevel: 'OFF', }) /** reactive token payload */ diff --git a/packages/nc-gui/composables/useGlobal/types.ts b/packages/nc-gui/composables/useGlobal/types.ts index adf615070c..5ddc0aec34 100644 --- a/packages/nc-gui/composables/useGlobal/types.ts +++ b/packages/nc-gui/composables/useGlobal/types.ts @@ -23,6 +23,7 @@ export interface AppInfo { ncAttachmentFieldSize: number ncMaxAttachmentsAllowed: number isCloud: boolean + automationLogLevel: 'OFF' | 'ERROR' | 'ALL' } export interface StoredState {