Skip to content

Commit

Permalink
fix(search-result-tool): adjust to fit with igo2-lib 16.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pelord committed Jan 19, 2024
1 parent 6951447 commit ed7f20c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';

import { EntityRecord, EntityStoreFilterCustomFuncStrategy, EntityStoreStrategyFuncOptions, EntityStoreWithStrategy } from '@igo2/common';
import { EntityRecord, EntityStoreFilterCustomFuncStrategy, EntityStoreStrategyFuncOptions, EntityStore } from '@igo2/common';
import { ConfigService, StorageService } from '@igo2/core';
import { SearchResult, SearchSourceService, SearchSource, CommonVectorStyleOptions } from '@igo2/geo';
import { BehaviorSubject, Subscription } from 'rxjs';
Expand Down Expand Up @@ -34,7 +34,7 @@ export class SearchState {
/**
* Store that holds the search results
*/
readonly store: EntityStoreWithStrategy<SearchResult> = new EntityStoreWithStrategy<SearchResult>([]);
readonly store: EntityStore<SearchResult> = new EntityStore<SearchResult>([]);

/**
* Search types currently enabled in the search source service
Expand Down

0 comments on commit ed7f20c

Please sign in to comment.