@fundamental-ngx/platform 0.62.0-rc.2 → 0.62.0-rc.21

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.
@@ -798,7 +798,9 @@ class IconTabBarProcessTypeComponent extends ClosableIconTabBar {
798
798
  * @param selectedItem
799
799
  */
800
800
  _selectItem(selectedItem) {
801
- this._currentStepIndex = selectedItem.index;
801
+ if (selectedItem) {
802
+ this._currentStepIndex = selectedItem.index;
803
+ }
802
804
  super._selectItem(selectedItem);
803
805
  }
804
806
  /**