@ibiz-template/runtime 0.7.41-alpha.84 → 0.7.41-alpha.85
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.esm.js
CHANGED
|
@@ -34499,7 +34499,7 @@ var SysUIActionProvider = class extends UIActionProviderBase {
|
|
|
34499
34499
|
return { closeView: true };
|
|
34500
34500
|
}
|
|
34501
34501
|
const result = await view.callUIAction(uIActionTag, args);
|
|
34502
|
-
return result
|
|
34502
|
+
return result ? { data: Array.isArray(result) ? [...result] : [result] } : {};
|
|
34503
34503
|
}
|
|
34504
34504
|
};
|
|
34505
34505
|
|