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 { IItem, IListItem } from '@farmmaps/common';
export class ItemListItemContainerComponent {
constructor(private componentFactoryResolver: ComponentFactoryResolver, @Inject(AbstractItemListItemComponent) public itemComponentList: AbstractItemListItemComponent[] ) {
this.itemComponentList = [...this.itemComponentList].reverse();
}
@Input() item: IListItem;
@@ -27,7 +28,6 @@ export class ItemListItemContainerComponent {
let selected = -1;
let maxMatches =0;
let showItem = true;
this.itemComponentList.reverse();
for (let i = 0; i < this.itemComponentList.length; i++) {
let matches=0;
let criteria=0;