Stop Progagation when click clear date icon
This commit is contained in:
parent
12e19b82d8
commit
edc767a624
1 changed files with 2 additions and 1 deletions
|
@ -569,8 +569,9 @@
|
||||||
handleInputMouseleave () {
|
handleInputMouseleave () {
|
||||||
this.showClose = false;
|
this.showClose = false;
|
||||||
},
|
},
|
||||||
handleIconClick () {
|
handleIconClick (event) {
|
||||||
if (this.showClose) {
|
if (this.showClose) {
|
||||||
|
event.stopPropagation();
|
||||||
this.handleClear();
|
this.handleClear();
|
||||||
} else if (!this.disabled) {
|
} else if (!this.disabled) {
|
||||||
this.handleFocus();
|
this.handleFocus();
|
||||||
|
|
Loading…
Add table
Reference in a new issue