feat(album): fix the loading indicator upon opening the page

This commit is contained in:
2025-06-05 11:02:28 -04:00
parent 2c29878f70
commit 74323247c9
2 changed files with 1 additions and 1 deletions

View File

@@ -16,7 +16,7 @@
<!-- Save button --> <!-- Save button -->
<button v-if="isEditMode" :disabled="isSaving || !canSave" :title="t('save')" <button v-if="isEditMode" :disabled="isSaving || !canSave" :title="t('save')"
class="flex size-12 items-center justify-center rounded-full bg-hutopyPrimary shadow-lg" @click="saveChanges()"> class="flex size-12 items-center justify-center rounded-full bg-hutopyPrimary shadow-lg" @click="saveChanges()">
<template v-if="isLoading"> <template v-if="isSaving">
<v-progress-circular indeterminate size="20" width="2" color="white" /> <v-progress-circular indeterminate size="20" width="2" color="white" />
</template> </template>
<template v-else> <template v-else>