Skip to content

Commit a6e95d3

Browse files
authored
Merge branch 'master' into doc-compliance
2 parents 469b4e1 + a213947 commit a6e95d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/search/search.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,13 @@ export class Search implements ControlValueAccessor {
212212
*/
213213
clearSearch(): void {
214214
this.value = "";
215+
this.doValueChange();
215216
this.clear.emit();
216-
this.propagateChange(this.value);
217217
}
218218

219219
doValueChange() {
220-
this.valueChange.emit(this.value);
221220
this.propagateChange(this.value);
221+
this.valueChange.emit(this.value);
222222
}
223223

224224
openSearch() {

0 commit comments

Comments
 (0)