Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Use argument and enable empty input
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasHirt committed May 12, 2020
1 parent b89c580 commit 43699b9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/elements/OcModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,8 @@ export default {
this.$emit("type", value)
},
$_ocModal_input_assignPropAsValue() {
if (this.inputValue) {
this.$_ocModal_input_value = this.inputValue
}
$_ocModal_input_assignPropAsValue(value) {
this.$_ocModal_input_value = value
}
}
}
Expand Down

0 comments on commit 43699b9

Please sign in to comment.