bugfix :: 통합검색 > 1차 조회후 접어놓고 재조회시 펼쳐보기 버튼 없어지는 문제 수정.

This commit is contained in:
leejinho 2020-03-31 12:10:23 +09:00
parent 0e9a64b0e7
commit 1a34f2582e

View File

@ -711,11 +711,9 @@ export class TopBarComponent implements OnInit, OnDestroy {
id: 'IntegratedSearchDialog' id: 'IntegratedSearchDialog'
}); });
if (!!result) { if (!!result && !!result.clear) {
this.integratedIsShowOpenIcon = false; this.integratedIsShowOpenIcon = false;
if (!!result.clear) { this.integratedSearchWord = '';
this.integratedSearchWord = '';
}
} }
}, interval); }, interval);
} }