Skip to content

Commit

Permalink
Fix basic string value
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Apr 26, 2024
1 parent c992e7e commit 2d7aa18
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/value.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ function renderObjectValue(container: HTMLElement, value?: any) {
return;
}

if (value.Value["string"]) {
console.log(value.Value["string"])
container.innerHTML = value.Value["string"];
return;
}

varName = value.Value.VariableName ?? value.Value.OutputName ?? value.Value.PropertyName;
varType = value.Value.Type;
} else if (value.Variable) {
Expand Down

0 comments on commit 2d7aa18

Please sign in to comment.