[ADF-1238] Search debounce click issue fix and minor style clean (#2361)

* fix search issues no result table not shown
minor issues style button

* fix issue animation search input field debouncing toggle search

* fix test search
remove expandable probeprties

* remove test expand

* ripristinate expandable properties

* fix test
This commit is contained in:
Eugenio Romano
2017-09-21 20:13:37 +01:00
committed by Denys Vuika
parent fbaf901462
commit 62f6ca0d08
20 changed files with 128 additions and 78 deletions

View File

@@ -123,7 +123,7 @@ export class SearchAutocompleteComponent implements OnChanges {
results => {
this.results = results.list.entries.slice(0, this.maxResults);
if (results && results.list && results.list.entries.length > 0) {
if (results && results.list) {
this.startAnimation();
}