mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 04:22:28 +02: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]
|
itemsPerPageOptions: [20, 50, 100]
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<template v-slot:item.name="{ item }">
|
<template v-slot:item.url="{ item }">
|
||||||
<router-link :to="{name:'browse-book', params: {bookId: item.id}}">{{ item.name }}</router-link>
|
<router-link :to="{name:'browse-book', params: {bookId: item.id}}">{{ item.url }}</router-link>
|
||||||
</template>
|
</template>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
</v-container>
|
</v-container>
|
||||||
|
|
@ -24,9 +24,7 @@
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import {MediaStatus} from '@/types/enum-books'
|
|
||||||
import {BookDto} from '@/types/komga-books'
|
import {BookDto} from '@/types/komga-books'
|
||||||
import {convertErrorCodes} from '@/functions/error-codes'
|
|
||||||
|
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
name: 'SettingsDuplicates',
|
name: 'SettingsDuplicates',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue