Fixes autocompelte filter not clearing value from tag.

This commit is contained in:
Mateus Machado Luna 2019-10-23 09:48:10 -03:00
parent 0a9648beca
commit 2c56e6fad7
1 changed files with 2 additions and 2 deletions

View File

@ -139,11 +139,11 @@
} else {
this.label = metadata.value;
this.selected = metadata.value;
this.$emit( 'sendValuesToTags', { label: this.label, value: this.selected });
}
} else {
return false;
this.label = '';
this.selected = '';
}
}
}