@smartbit4all/ng-client 3.3.113 → 3.3.114
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/esm2020/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +6 -4
- package/fesm2015/smartbit4all-ng-client.mjs +5 -3
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +5 -3
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.114.tgz +0 -0
- package/smartbit4all-ng-client-3.3.113.tgz +0 -0
|
@@ -5069,10 +5069,12 @@ class UiActionToolbarComponent {
|
|
|
5069
5069
|
}
|
|
5070
5070
|
async setUp() {
|
|
5071
5071
|
if (this.uiActionModels) {
|
|
5072
|
-
|
|
5072
|
+
let uiActionModelsWithDescriptions = [];
|
|
5073
|
+
for (const uiActionModel of this.uiActionModels) {
|
|
5073
5074
|
uiActionModel.descriptor = await this.manager.getActionDescriptor(uiActionModel.uiAction);
|
|
5074
|
-
|
|
5075
|
-
}
|
|
5075
|
+
uiActionModelsWithDescriptions.push(uiActionModel);
|
|
5076
|
+
}
|
|
5077
|
+
this.uiActionModelsWithDescriptions = uiActionModelsWithDescriptions;
|
|
5076
5078
|
}
|
|
5077
5079
|
}
|
|
5078
5080
|
async onActionClicked(event, uiActionModel) {
|