Skip to content

Commit

Permalink
fix: fix icon for deleted files in the history (#1708)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou authored Dec 26, 2023
1 parent 1ad3410 commit 8b2b5ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/panels/HistoryListPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
</td>
<td class="px-0 text-center" style="width: 32px">
<template v-if="!item.exists">
<v-icon class="text--disabled">{{ mdiFile }}-cancel</v-icon>
<v-icon class="text--disabled">{{ mdiFileCancel }}</v-icon>
</template>
<template v-else-if="getSmallThumbnail(item) && getBigThumbnail(item)">
<v-tooltip top>
Expand Down Expand Up @@ -523,6 +523,7 @@ import {
mdiNotebookEdit,
mdiNotebookPlus,
mdiNotebook,
mdiFileCancel,
} from '@mdi/js'
@Component({
components: { Panel },
Expand All @@ -542,6 +543,7 @@ export default class HistoryListPanel extends Mixins(BaseMixin) {
mdiNotebookPlus = mdiNotebookPlus
mdiNotebookEdit = mdiNotebookEdit
mdiNotebook = mdiNotebook
mdiFileCancel = mdiFileCancel
formatFilesize = formatFilesize
Expand Down

0 comments on commit 8b2b5ba

Please sign in to comment.