Skip to content

Commit

Permalink
refactor: add missing loading attribute for identify
Browse files Browse the repository at this point in the history
Exist on the original identiy, accidentally removed it when using this generic version.
  • Loading branch information
noaione authored and ferferga committed Aug 15, 2023
1 parent 30214a9 commit 6743e96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Dialogs/GenericDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:height="$vuetify.display.mobile ? undefined : 'auto'"
:width="$vuetify.display.mobile ? undefined : '70vw'"
@after-leave="emit('close')">
<v-card :loading="isLoading" height="100%" class="d-flex flex-column">
<v-card :loading="loading" height="100%" class="d-flex flex-column">
<slot name="loader" />
<v-toolbar color="transparent">
<template v-if="slots.toolbarPrepend" #prepend>
Expand Down Expand Up @@ -50,7 +50,7 @@ const props = defineProps<{
modelValue: boolean;
title: string;
subtitle?: string;
isLoading?: boolean;
loading?: boolean;
}>();
const emit = defineEmits<{
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Item/Identify/IdentifyDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:model-value="model"
:title="$t('identify')"
:subtitle="itemPath"
loading
@close="wrapClose">
<template #loader>
<v-progress-linear v-model="progress" :indeterminate="isLoading" />
Expand Down

0 comments on commit 6743e96

Please sign in to comment.