@smartbit4all/ng-client 3.3.195 → 3.3.196
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 +3 -2
- package/fesm2015/smartbit4all-ng-client.mjs +2 -1
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +2 -1
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.196.tgz +0 -0
- package/smartbit4all-ng-client-3.3.195.tgz +0 -0
|
@@ -5214,7 +5214,8 @@ class UiActionToolbarComponent {
|
|
|
5214
5214
|
let uiActionModelsWithDescriptions = [];
|
|
5215
5215
|
for (const uiActionModel of this.uiActionModels) {
|
|
5216
5216
|
const uiAction = uiActionModel.uiAction;
|
|
5217
|
-
|
|
5217
|
+
// using equality is a must here, undefined and null should be equal
|
|
5218
|
+
if (this.id == uiAction.toolbar) {
|
|
5218
5219
|
uiActionModel.descriptor = await this.manager.getActionDescriptor(uiActionModel.uiAction);
|
|
5219
5220
|
uiActionModelsWithDescriptions.push(uiActionModel);
|
|
5220
5221
|
}
|