Skip to content

Commit

Permalink
[4561] Display boolean values properly in the query view
Browse files Browse the repository at this point in the history
Bug: #4561
Signed-off-by: Stéphane Bégaudeau <[email protected]>
  • Loading branch information
sbegaudeau authored and frouene committed Feb 13, 2025
1 parent b803983 commit ded4b92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Now they are executed for some data if the data was coming from a studio too.
- https://github.com/eclipse-sirius/sirius-web/issues/4523[#4523] [diagram] Fix an issue that caused the palette to be unopenable during a fit view
- https://github.com/eclipse-sirius/sirius-web/issues/4557[#4557] [sirius-web] Fix an issue where targetObjectURI was not set in manifest.json during the download of a project
- https://github.com/eclipse-sirius/sirius-web/issues/4547[#4547] [vs-code] Adapt the VSCode extension to the use of SemanticData#id as editingContextId
- https://github.com/eclipse-sirius/sirius-web/issues/4561[#4561] [sirius-web] Display boolean values properly in the query view


=== New Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const BooleanExpressionResultViewer = ({ result }: ExpressionResultViewerProps)
</Typography>
<List dense>
<ListItem>
<ListItemText primary={booleanValue} />
<ListItemText primary={booleanValue.toString()} />
</ListItem>
</List>
</Box>
Expand Down

0 comments on commit ded4b92

Please sign in to comment.