Merge remote-tracking branch 'origin/develop' into angular-17

This commit is contained in:
Alex Martzios 2024-07-26 12:04:58 +03:00
commit 1b0a57dcf3
1 changed files with 2 additions and 0 deletions

View File

@ -734,6 +734,7 @@ export class IndicatorUtils {
} else if ((obj[this.getDescriptionObjectName(obj)]).hasOwnProperty("queries")) { } else if ((obj[this.getDescriptionObjectName(obj)]).hasOwnProperty("queries")) {
return "queries"; return "queries";
} }
return null;
} }
private getDescriptionObjectName(obj) { private getDescriptionObjectName(obj) {
@ -746,6 +747,7 @@ export class IndicatorUtils {
} else if (obj.hasOwnProperty("series")) { } else if (obj.hasOwnProperty("series")) {
return "series"; return "series";
} }
return null;
} }
private extractType(obj, indicatorPath: IndicatorPath): IndicatorPathType { private extractType(obj, indicatorPath: IndicatorPath): IndicatorPathType {