Skip to content

Commit

Permalink
Format source
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed May 29, 2024
1 parent 06e7855 commit 978a2b4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/queue/view/ViewDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
>
</delete-confirmation-dialog>
<LoadingIndicator v-model="loading"> </LoadingIndicator>
<ErrorDialog v-model="dialogError" :error="error">
</ErrorDialog>
<ErrorDialog v-model="dialogError" :error="error"> </ErrorDialog>
</v-dialog>
</template>

Expand Down Expand Up @@ -68,7 +67,7 @@ async function onDeleteConfirmed() {
loading.value = true;
const result = await deleteItem(item.value);
loading.value = false;
if(result.error) {
if (result.error) {
error.value = result.error;
dialogError.value = true;
return;
Expand Down

0 comments on commit 978a2b4

Please sign in to comment.