Skip to content

Commit 341ed6a

Browse files
committed
Fixed rewriting app id in j-UIBuilder.
1 parent 3a8b1eb commit 341ed6a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

j-UIBuilder/component.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ COMPONENT('uibuilder', 'css:1', function(self, config, cls) {
2525
config.app && self.SEEX(config.app, null);
2626
}
2727

28-
data.id = config.id || self.ID;
28+
if (config.id)
29+
data.id = config.id;
30+
2931
UIBuilder.build(self.element, data, function(response) {
3032

3133
if (!config.css)

j-UIBuilder/component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"datecreated": "2022-08-25T00:25:03.000Z",
3-
"dateupdated": "2025-08-05T08:26:00.000Z",
3+
"dateupdated": "2025-11-13T14:33:00.000Z",
44
"name": "j-UIBuilder",
55
"jcomponent": "19|20",
66
"color": "transparent",

0 commit comments

Comments
 (0)