mirror of
https://github.com/gotson/komga.git
synced 2025-12-19 23:12:47 +01:00
fix(webui): display clickable links for duplicate files
This commit is contained in:
parent
78ebcbcb53
commit
4453c03200
1 changed files with 2 additions and 4 deletions
|
|
@ -15,8 +15,8 @@
|
|||
itemsPerPageOptions: [20, 50, 100]
|
||||
}"
|
||||
>
|
||||
<template v-slot:item.name="{ item }">
|
||||
<router-link :to="{name:'browse-book', params: {bookId: item.id}}">{{ item.name }}</router-link>
|
||||
<template v-slot:item.url="{ item }">
|
||||
<router-link :to="{name:'browse-book', params: {bookId: item.id}}">{{ item.url }}</router-link>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-container>
|
||||
|
|
@ -24,9 +24,7 @@
|
|||
|
||||
<script lang="ts">
|
||||
import Vue from 'vue'
|
||||
import {MediaStatus} from '@/types/enum-books'
|
||||
import {BookDto} from '@/types/komga-books'
|
||||
import {convertErrorCodes} from '@/functions/error-codes'
|
||||
|
||||
export default Vue.extend({
|
||||
name: 'SettingsDuplicates',
|
||||
|
|
|
|||
Loading…
Reference in a new issue