- Notifications
You must be signed in to change notification settings - Fork1.1k
Closed
Labels
Description
Overview of the problem
Buefy version: 0.9.23
Vuejs version: 2.7.14
OS/Browser: Safari,Chrome,Firefox / macOS
Description
Originally posted by@glumb in#3752 (comment) adapted by@kikuomax
If a value is entered once that is outside the range, the notification does not go away if numbers areprogrammatically input in the valid range.
Steps to reproduce
<b-field><b-inputv-model.number="enteredValue"type="number" :min="100" :step="100" :max="900"/><pclass="control"><spanclass="button is-static">{{ name}}</span></p><pclass="control"><b-buttontitle="reset value"icon-left="undo" @click="enteredValue = 600"/></p></b-field>
- Enter a value outside the range; e.g. 1
- Press "reset value" button
Expected behavior
The notification goes away after setting a valid value.
Actual behavior
The notification does not go away after setting a valid value.