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

@@ -15,6 +15,7 @@ import { WidgetHostDirective } from '../widget-host/widget-host.directive';
export class FeatureListFeatureContainerComponent {
constructor(private componentFactoryResolver: ComponentFactoryResolver, @Inject(AbstractFeatureListFeatureComponent) public featureLists: AbstractFeatureListFeatureComponent[] ) {
this.featureLists = [...this.featureLists].reverse();
}
@Input() feature: Feature;
@@ -26,7 +27,6 @@ export class FeatureListFeatureContainerComponent {
let selected = -1;
let maxMatches =0;
this.featureLists.reverse();
for (let i = 0; i < this.featureLists.length; i++) {
let matches=0;
let criteria=0;