diff --git a/package.json b/package.json index 84db29b..4c02c7f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@elsci-io/ui-essential", - "version": "1.0.70", + "version": "1.0.71", "description": "Material Design components created for products built by elsci.io", "main": "src/index.js", "type": "module", diff --git a/src/TypeAheadInput/TypeAheadInput.js b/src/TypeAheadInput/TypeAheadInput.js index 9c506dc..aa7648a 100644 --- a/src/TypeAheadInput/TypeAheadInput.js +++ b/src/TypeAheadInput/TypeAheadInput.js @@ -99,6 +99,7 @@ export default class TypeAheadInput extends HTMLElement { #onClearIconClick() { this.value = {displayName: ""}; + this.#validateAndNotify(); this.#inputElement.querySelector('input').focus(); }