Skip to content

Commit

Permalink
hotfix unmarshall (compiler....)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGB committed Jul 4, 2022
1 parent b4aab39 commit 809383a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/handlers/unmarshall/UnmarshallConfigHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class UnmarshallConfigHandler extends AbstractDiskHandler {
this.localDisk.push(`${YAML_INDENT.repeat(1)}${key}:`);
Object.entries(valueConfig).forEach(([key, valueInternal]) => {
// Lvl3: config properties
this.localDisk.push(`${YAML_INDENT.repeat(2)}${key}: ${parseValue(valueInternal, config)}`);
this.localDisk.push(`${YAML_INDENT.repeat(2)}${key}: ${parseValue(valueInternal as string, config)}`);
});
} else {
// Lvl2: config properties
Expand Down

0 comments on commit 809383a

Please sign in to comment.