Fix template selection
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma
2020-06-30 09:11:46 +02:00
parent 214dc3ffa1
commit 09fa8b4f1f
4 changed files with 43 additions and 18 deletions

View File

@@ -28,10 +28,14 @@ export class FeatureListFeatureContainerComponent {
let maxMatches =0;
for (let i = 0; i < this.featureLists.length; i++) {
let matches=0;
if (this.featureLists[i]['forItemType'] == this.feature.get("itemType")) {
matches++;
let criteria=0;
if (this.featureLists[i]['forItemType']) {
criteria++;
if(this.featureLists[i]['forItemType'].indexOf(this.feature.get("itemType")) >= 0) {
matches++;
}
}
if(matches > maxMatches) {
if(criteria == matches && matches > maxMatches) {
selected=i;
maxMatches = matches;
}