From 68fe4fd23d4836b40be834201f84d70fb5ec2e7a Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Sun, 28 Jun 2020 17:12:43 +0800 Subject: [PATCH] feat(webui): collection edition on card in search results --- komga-webui/src/views/Search.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/komga-webui/src/views/Search.vue b/komga-webui/src/views/Search.vue index 5faed64b5..840d341d4 100644 --- a/komga-webui/src/views/Search.vue +++ b/komga-webui/src/views/Search.vue @@ -49,7 +49,7 @@ @@ -118,6 +118,9 @@ export default Vue.extend({ singleEditBook (book: BookDto) { this.$store.dispatch('dialogUpdateBooks', book) }, + singleEditCollection (collection: CollectionDto) { + this.$store.dispatch('dialogEditCollection', collection) + }, reloadResults () { this.loadResults(this.$route.query.q.toString()) },