Browse Source

fix: opt in to `import.meta.*` properties

pull/7983/head
Daniel Roe 3 months ago
parent
commit
378a40f695
No known key found for this signature in database
GPG Key ID: CBC814C393D93268
  1. 6
      packages/nc-gui/composables/useLoadingIndicator/index.ts

6
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)

Loading…
Cancel
Save