From a2c19c46323963c25a5d5eb417cb010ed50e4be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Sat, 23 Dec 2023 13:07:44 +0100 Subject: [PATCH] fix(NcInputConfirmCancel): rename value to modelValue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Raimund Schlüßler --- src/components/NcAppNavigationItem/NcInputConfirmCancel.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/NcAppNavigationItem/NcInputConfirmCancel.vue b/src/components/NcAppNavigationItem/NcInputConfirmCancel.vue index 6c726ca77d..5925451a87 100644 --- a/src/components/NcAppNavigationItem/NcInputConfirmCancel.vue +++ b/src/components/NcAppNavigationItem/NcInputConfirmCancel.vue @@ -88,7 +88,7 @@ export default { type: String, }, - value: { + modelValue: { default: '', type: String, }, @@ -109,7 +109,7 @@ export default { computed: { valueModel: { - get() { return this.value }, + get() { return this.modelValue }, set(newValue) { this.$emit('input', newValue) },