Skip to content

Commit

Permalink
XIVY-15134 consider empty item
Browse files Browse the repository at this point in the history
Adjust to ui-components change that treats undefined as empty item.
  • Loading branch information
ivy-lgi committed Dec 10, 2024
1 parent caee292 commit f7d7b08
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion integrations/standalone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@axonivy/dataclass-editor": "*",
"@axonivy/dataclass-editor-protocol": "*",
"@axonivy/ui-components": "~12.0.1-next.390",
"@axonivy/ui-components": "~12.0.1-next.401",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions packages/dataclass-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"main": "lib/editor.js",
"dependencies": {
"@axonivy/dataclass-editor-protocol": "~12.0.1-next",
"@axonivy/jsonrpc": "~12.0.1-next.390",
"@axonivy/ui-components": "~12.0.1-next.390",
"@axonivy/ui-icons": "~12.0.1-next.390",
"@axonivy/jsonrpc": "~12.0.1-next.401",
"@axonivy/ui-components": "~12.0.1-next.401",
"@axonivy/ui-icons": "~12.0.1-next.401",
"@tanstack/react-query": "5.32.1",
"@tanstack/react-query-devtools": "5.32.1",
"react": "^18.2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test('cardinality', async () => {
await editor.table.row(5).locator.click();
await editor.detail.field.entity.accordion.open();

await cardinality.expectToHaveOptions('', 'One-to-One', 'Many-to-One');
await cardinality.expectToHaveOptions('One-to-One', 'Many-to-One');
});

test('cascade', async () => {
Expand Down

0 comments on commit f7d7b08

Please sign in to comment.