Skip to content

Commit

Permalink
Merge pull request #251 from gisce/hotfix/bug_webclient#371
Browse files Browse the repository at this point in the history
Fixes bug webclient#371
  • Loading branch information
ecarreras authored Nov 8, 2022
2 parents c022540 + 449b254 commit cb2bded
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gisce/react-ooui",
"version": "1.1.6",
"version": "1.1.7",
"files": [
"dist",
"src",
Expand Down
3 changes: 3 additions & 0 deletions src/views/ActionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,19 +192,22 @@ function ActionView(props: Props, ref: any) {
case "form": {
viewDataRetrieved.push({
...(viewInfo as FormView),
type: viewType,
});
break;
}
case "tree": {
viewDataRetrieved.push({
...(viewInfo as TreeView),
isExpandable: treeExpandable,
type: viewType,
});
break;
}
case "graph": {
viewDataRetrieved.push({
...(viewInfo as GraphView),
type: viewType,
});
break;
}
Expand Down

0 comments on commit cb2bded

Please sign in to comment.