diff --git a/src/components/EditPictureForm.vue b/src/components/EditPictureForm.vue index 1f158e785..29377b559 100644 --- a/src/components/EditPictureForm.vue +++ b/src/components/EditPictureForm.vue @@ -140,7 +140,7 @@ const updatePhotoPreview = (value) => { img.onerror = () => { notify( t("This photo provider doesn't allow remote downloads"), - 'negative' + 'negative', ); }; } @@ -219,11 +219,7 @@ const makeRequest = async () => { color="primary" class="cursor-pointer" @click="rotateLeft()" - > - - + />
@@ -233,11 +229,7 @@ const makeRequest = async () => { color="primary" class="cursor-pointer" @click="rotateRight()" - > - - + />
@@ -265,7 +257,6 @@ const makeRequest = async () => { class="cursor-pointer q-mr-sm" @click="openInputFile()" > - {{ diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue index 15fd00058..b51a2bad8 100644 --- a/src/components/ui/CardDescriptor.vue +++ b/src/components/ui/CardDescriptor.vue @@ -71,8 +71,8 @@ onBeforeMount(async () => { }); // It enables to load data only once if the module is the same as the dataKey - if (!isSameDataKey.value || !route.params.id || $props.id !== route.params.id) - await getData(); + if (!isSameDataKey.value || !route.params.id) await getData(); + await getData(); watch( () => [$props.url, $props.filter], async () => {