@startinblox/core 0.19.0-beta.14 → 0.19.0-beta.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11145,6 +11145,8 @@ class CustomGetter {
|
|
|
11145
11145
|
);
|
|
11146
11146
|
permissions = this.resource[this.getExpandedPredicate("permissions")];
|
|
11147
11147
|
}
|
|
11148
|
+
if (!Array.isArray(permissions))
|
|
11149
|
+
permissions = [permissions];
|
|
11148
11150
|
return permissions ? permissions : [];
|
|
11149
11151
|
}
|
|
11150
11152
|
/**
|
|
@@ -53347,6 +53349,8 @@ const SolidFormSearch = {
|
|
|
53347
53349
|
get value() {
|
|
53348
53350
|
const values = {};
|
|
53349
53351
|
this.widgets.forEach((widget) => {
|
|
53352
|
+
if (widget == null)
|
|
53353
|
+
return;
|
|
53350
53354
|
const name = (widget.component || widget).name;
|
|
53351
53355
|
if (name == null)
|
|
53352
53356
|
return;
|