Skip to content

Commit

Permalink
fix(NcInputConfirmCancel): rename value to modelValue
Browse files Browse the repository at this point in the history
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
  • Loading branch information
raimund-schluessler committed Dec 23, 2023
1 parent 90cffb2 commit a2c19c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/NcAppNavigationItem/NcInputConfirmCancel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default {
type: String,
},

value: {
modelValue: {
default: '',
type: String,
},
Expand All @@ -109,7 +109,7 @@ export default {

computed: {
valueModel: {
get() { return this.value },
get() { return this.modelValue },
set(newValue) {
this.$emit('input', newValue)
},
Expand Down

0 comments on commit a2c19c4

Please sign in to comment.