@fundamental-ngx/platform 0.56.2-rc.3 → 0.56.2-rc.4

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.
@@ -5067,7 +5067,9 @@ class TableComponent extends Table {
5067
5067
  _calculateTableColumnsLength() {
5068
5068
  const isGroupable = this.initialState?.initialGroupBy.length;
5069
5069
  this._tableColumnsLength =
5070
- this.getTableColumns().length + (this._isSelectionColumnShown || isGroupable ? 1 : 0);
5070
+ this.getTableColumns().length +
5071
+ (this._isSelectionColumnShown || isGroupable ? 1 : 0) +
5072
+ (this.rowNavigatable ? 1 : 0);
5071
5073
  }
5072
5074
  /** @hidden */
5073
5075
  _calculateIsShownNavigationColumn() {