[ADF-No-issue-number] search problem type fix (#3068)

* search problem type fix

* fix type test

* fix test node selector

* fix test content node selector panel
This commit is contained in:
Eugenio Romano
2018-03-13 12:10:06 +00:00
committed by GitHub
parent ba905acf13
commit c3e2588e35
8 changed files with 18 additions and 17 deletions

View File

@@ -37,7 +37,7 @@ export class SearchService {
.catch(err => this.handleError(err));
}
search(searchTerm: string, maxResults: string, skipCount: string): Observable<NodePaging> {
search(searchTerm: string, maxResults: number, skipCount: number): Observable<NodePaging> {
const searchQuery = Object.assign(this.searchConfigurationService.generateQueryBody(searchTerm, maxResults, skipCount));
const promise = this.apiService.getInstance().search.searchApi.search(searchQuery);