Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Nov 24, 2023
1 parent 56c630e commit 20a4292
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v3.19.0

- :bug: `Range` Fix initial state

### v3.18.0

- :rocket: `Dropdown` Take 100% of width of parent
Expand Down
4 changes: 2 additions & 2 deletions components/input/Range.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ export default {
data: function() {
return {
help: false,
current: ''
current: this.modelValue
}
},
watch: {
current: function() {
if (this.current === this.modelValue) return;
this.$emit('update:modelValue', this.current);
this.$emit('update:modelValue', Number(this.current));
}
},
components: {
Expand Down

0 comments on commit 20a4292

Please sign in to comment.