Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 809383a

Browse files
committed
hotfix unmarshall (compiler....)
1 parent b4aab39 commit 809383a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parsers/handlers/unmarshall/UnmarshallConfigHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class UnmarshallConfigHandler extends AbstractDiskHandler {
1616
this.localDisk.push(`${YAML_INDENT.repeat(1)}${key}:`);
1717
Object.entries(valueConfig).forEach(([key, valueInternal]) => {
1818
// Lvl3: config properties
19-
this.localDisk.push(`${YAML_INDENT.repeat(2)}${key}: ${parseValue(valueInternal, config)}`);
19+
this.localDisk.push(`${YAML_INDENT.repeat(2)}${key}: ${parseValue(valueInternal as string, config)}`);
2020
});
2121
} else {
2222
// Lvl2: config properties

0 commit comments

Comments
 (0)