Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion workflow-parser/src/workflows/yaml-object-reader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class YamlObjectReader implements ObjectReader {
if (isPair(node)) {
const scalarKey = node.key as Scalar;
range = this.getRange(scalarKey);
const key = scalarKey.value as string;
const key = scalarKey.value === null ? "" : String(scalarKey.value);
yield new ParseEvent(EventType.Literal, new StringToken(this.fileId, range, key, undefined));
for (const child of this.getNodes(node.value)) {
yield child;
Expand Down