From 298c8d74f7973cdf0175233c2fc6684e48f161d8 Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Tue, 18 Jan 2022 15:53:49 +0100 Subject: [PATCH] fixes --- .../app/components/ui-check-list.vue | 1 + .../app/editor/ui-editor-page.vue | 38 ++++++++++++++++--- .../modules/languages/ui-languagepicker.vue | 4 +- zero.Backoffice.UI/app/utils/arrays.ts | 24 +++++++++++- 4 files changed, 57 insertions(+), 10 deletions(-) diff --git a/zero.Backoffice.UI/app/components/ui-check-list.vue b/zero.Backoffice.UI/app/components/ui-check-list.vue index 7c32f623..aeb38411 100644 --- a/zero.Backoffice.UI/app/components/ui-check-list.vue +++ b/zero.Backoffice.UI/app/components/ui-check-list.vue @@ -101,6 +101,7 @@ } this.$emit('input', value); + this.$emit('update:value', value); } } } diff --git a/zero.Backoffice.UI/app/editor/ui-editor-page.vue b/zero.Backoffice.UI/app/editor/ui-editor-page.vue index 0a6b2589..4a82cce3 100644 --- a/zero.Backoffice.UI/app/editor/ui-editor-page.vue +++ b/zero.Backoffice.UI/app/editor/ui-editor-page.vue @@ -1,5 +1,5 @@