Skip to content

Commit 54fe2bf

Browse files
committed
fix: selected items not showing on custom content
1 parent 2fd60ac commit 54fe2bf

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

packages/pluggableWidgets/combobox-web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed selected options not showing for custom content type "yes"
12+
913
## [1.1.1] - 2024-01-15
1014

1115
### Changed

packages/pluggableWidgets/combobox-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/combobox-web",
33
"widgetName": "Combobox",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"description": "Configurable Combo box widget with suggestions and autocomplete.",
66
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/combobox-web/src/helpers/Association/AssociationMultiSelector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class AssociationMultiSelector
2121
this._attr?.value?.map(value => {
2222
return value.id;
2323
}) ?? null;
24-
if (this.selectionMethod === "rowclick") {
24+
if (this.selectionMethod === "rowclick" || this.customContentType === "yes") {
2525
this.selectedItemsStyle = "boxes";
2626
}
2727
}

packages/pluggableWidgets/combobox-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="Combobox" version="1.1.1" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="Combobox" version="1.1.2" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="Combobox.xml" />
66
</widgetFiles>

0 commit comments

Comments
 (0)