mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 21:00:16 +02:00
fix(webui): library action menu scan would not work properly
This commit is contained in:
parent
f3a43195e8
commit
0fef983ff9
1 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@
|
|||
</v-btn>
|
||||
</template>
|
||||
<v-list dense>
|
||||
<v-list-item @click="scan">
|
||||
<v-list-item @click="scan(false)">
|
||||
<v-list-item-title>{{ $t('menu.scan_library_files') }}</v-list-item-title>
|
||||
</v-list-item>
|
||||
<v-list-item @click="scan(true)" class="list-warning">
|
||||
|
|
@ -84,7 +84,7 @@ export default Vue.extend({
|
|||
},
|
||||
},
|
||||
methods: {
|
||||
scan(scanDeep: boolean = false) {
|
||||
scan(scanDeep: boolean) {
|
||||
this.$komgaLibraries.scanLibrary(this.library, scanDeep)
|
||||
},
|
||||
analyze() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue