Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
Signed-off-by: Himani1519 <[email protected]>
  • Loading branch information
Himani1519 committed Nov 8, 2023
1 parent 311ffd2 commit c4da86f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/yamlConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,12 @@ function resolveTemplates(property: any, topObj: any): {property: any, templates
if (partParts.length > 1) {
templateFound = true;
let count = 0;
const trimmed = partParts[0];
let trimmed = partParts[0];
if (trimmed.startsWith("__ZOWE_UNRESOLVED_")) {
count = Number(partParts[0].charAt(18));
trimmed = partParts[0].substring(19);
}

// console.log('trimmed='+trimmed);

try {
Expand Down

0 comments on commit c4da86f

Please sign in to comment.