mirror of
https://github.com/gotson/komga.git
synced 2025-12-22 00:13:30 +01:00
feat(webui): collection edition on card in browse collections
This commit is contained in:
parent
68fe4fd23d
commit
e45389d77b
1 changed files with 4 additions and 0 deletions
|
|
@ -28,6 +28,7 @@
|
|||
<item-browser
|
||||
:items="collections"
|
||||
:selectable="false"
|
||||
:edit-function="editSingleCollection"
|
||||
/>
|
||||
|
||||
</v-container>
|
||||
|
|
@ -193,6 +194,9 @@ export default Vue.extend({
|
|||
return undefined
|
||||
}
|
||||
},
|
||||
editSingleCollection (collection: CollectionDto) {
|
||||
this.$store.dispatch('dialogEditCollection', collection)
|
||||
},
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue