@smartbit4all/ng-client 3.3.203 → 3.3.204

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.
@@ -9101,6 +9101,9 @@ class SmartFileUploaderComponent {
9101
9101
  }
9102
9102
  }
9103
9103
  async setUp() {
9104
+ if (!this.config?.smartComponent?.uiActionModels?.length) {
9105
+ return;
9106
+ }
9104
9107
  this.uiActionModel = this.config?.smartComponent.uiActionModels.find((uiActionModel) => uiActionModel.uiAction.code === this.config?.uiActionCode);
9105
9108
  if (!this.uiActionModel) {
9106
9109
  throw new Error(`UiAction with code ${this.config?.uiActionCode} could not found`);