Make reverse non destructive
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma
2020-10-31 13:43:31 +01:00
parent 61636b6e3d
commit 56a7544c1e
4 changed files with 4 additions and 4 deletions

View File

@@ -17,6 +17,7 @@ import { Observable } from 'rxjs';
export class FeatureListContainerComponent {
constructor(private store: Store<mapReducers.State>,private componentFactoryResolver: ComponentFactoryResolver, @Inject(AbstractFeatureListComponent) public featureLists: AbstractFeatureListComponent[],private packageService:PackageService ) {
this.featureLists = [...this.featureLists].reverse();
}
@Input() features: Array<Feature>
@@ -32,7 +33,6 @@ export class FeatureListContainerComponent {
let selected = -1;
let maxMatches =0;
let showItem = true;
this.featureLists.reverse();
for (let i = 0; i < this.featureLists.length; i++) {
let matches=0;
let criteria=0;