diff --git a/packages/nc-gui/composables/useLoadingIndicator/index.ts b/packages/nc-gui/composables/useLoadingIndicator/index.ts index 4455349df5..7f35540228 100644 --- a/packages/nc-gui/composables/useLoadingIndicator/index.ts +++ b/packages/nc-gui/composables/useLoadingIndicator/index.ts @@ -18,7 +18,7 @@ export function useLoadingIndicator({ duration = 2000, throttle = 200 }: UseLoad progress.value = 0 isLoading.value = true if (throttle) { - if (process.client) { + if (import.meta.client) { _throttle = setTimeout(_startTimer, throttle) } } else { @@ -44,7 +44,7 @@ export function useLoadingIndicator({ duration = 2000, throttle = 200 }: UseLoad function _hide() { clear() - if (process.client) { + if (import.meta.client) { setTimeout(() => { isLoading.value = false setTimeout(() => { @@ -55,7 +55,7 @@ export function useLoadingIndicator({ duration = 2000, throttle = 200 }: UseLoad } function _startTimer() { - if (process.client) { + if (import.meta.client) { _timer = setInterval(() => { _increase(step.value) }, 100)