diff --git a/src/platform/core/search/search-box/search-box.component.ts b/src/platform/core/search/search-box/search-box.component.ts index e15277416e..08bf5200d2 100644 --- a/src/platform/core/search/search-box/search-box.component.ts +++ b/src/platform/core/search/search-box/search-box.component.ts @@ -118,7 +118,10 @@ export class TdSearchBoxComponent extends _TdSearchBoxMixinBase implements ICont * Method executed when the search icon is clicked. */ searchClicked(): void { - if (this.alwaysVisible || !this._searchVisible) { + if (!this.alwaysVisible && this._searchVisible) { + this.value = ''; + this.handleClear(); + } else if (this.alwaysVisible || !this._searchVisible) { this._searchInput.focus(); } this.toggleVisibility();