Skip to content

Commit 2548935

Browse files
authored
fix(framework): Multiple properties have no attribute (#3725)
1 parent 28e868b commit 2548935

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

packages/base/hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
EDyKy0JUgyCZ34E/jIs5Wgbb/2g=
1+
9tF7yEWQXVH9MvgcDDfgmFxdVoU=

packages/base/src/UI5ElementMetadata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class UI5ElementMetadata {
126126
*/
127127
hasAttribute(propName) {
128128
const propData = this.getProperties()[propName];
129-
return propData.type !== Object && !propData.noAttribute;
129+
return propData.type !== Object && !propData.noAttribute && !propData.multiple;
130130
}
131131

132132
/**

packages/main/src/DayPicker.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ const metadata = {
5454
type: Integer,
5555
multiple: true,
5656
compareValues: true,
57-
noAttribute: true,
5857
},
5958

6059
/**

packages/main/src/MultiInput.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ const metadata = {
4949
*/
5050
tokens: {
5151
type: HTMLElement,
52-
multiple: true,
5352
},
5453
},
5554
events: /** @lends sap.ui.webcomponents.main.MultiInput.prototype */ {

0 commit comments

Comments
 (0)