Commits
William Welling authored dc9e93a9074
19 19 | import { SortDirection, SortOptions } from '../../cache/models/sort-options.model'; |
20 20 | import { RouteService } from '../../services/route.service'; |
21 21 | import { |
22 22 | getAllSucceededRemoteDataPayload, |
23 23 | getFirstSucceededRemoteData |
24 24 | } from '../operators'; |
25 25 | import { hasNoValue, hasValue, isNotEmpty, isNotEmptyOperator } from '../../../shared/empty.util'; |
26 26 | import { createSuccessfulRemoteDataObject$ } from '../../../shared/remote-data.utils'; |
27 27 | import { SearchConfig } from './search-filters/search-config.model'; |
28 28 | import { SearchService } from './search.service'; |
29 - | import { of } from 'rxjs/internal/observable/of'; |
29 + | import { of } from 'rxjs'; |
30 30 | import { PaginationService } from '../../pagination/pagination.service'; |
31 31 | |
32 32 | /** |
33 33 | * Service that performs all actions that have to do with the current search configuration |
34 34 | */ |
35 35 | @Injectable() |
36 36 | export class SearchConfigurationService implements OnDestroy { |
37 37 | |
38 38 | public paginationID = 'spc'; |
39 39 | /** |