@fundamental-ngx/core 0.58.0-rc.56 → 0.58.0-rc.58

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.
@@ -942,10 +942,14 @@ class ShellbarComponent {
942
942
  }
943
943
  /** @hidden */
944
944
  _navigationClicked(event) {
945
+ event.preventDefault();
946
+ event.stopPropagation();
945
947
  this.navigationButtonClicked.emit(event);
946
948
  }
947
949
  /** @hidden */
948
950
  _backClicked(event) {
951
+ event.preventDefault();
952
+ event.stopPropagation();
949
953
  this.backButtonClicked.emit(event);
950
954
  }
951
955
  /** @hidden */