From 78fe6d47ba2c572b824f01f7d109463b006c2f0d Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 11 Jul 2023 17:06:14 -0500 Subject: [PATCH] Fix:Library settings context menu actions for mobile view #1886 --- client/components/modals/Dialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/modals/Dialog.vue b/client/components/modals/Dialog.vue index f1c37bf4..2455c614 100644 --- a/client/components/modals/Dialog.vue +++ b/client/components/modals/Dialog.vue @@ -48,7 +48,7 @@ export default { }, methods: { clickedOption(action) { - this.$emit('action', action) + this.$emit('action', { action }) } }, mounted() {}