From c61e7945841636d7e40ce8c137069ac0ff9b9eee Mon Sep 17 00:00:00 2001 From: nirodaonline Date: Wed, 24 Apr 2024 15:34:55 +0100 Subject: [PATCH] Update row-chart row class to '_row' Changing the row identifier class to '_row' in order not to colide with bootstrap's 'row' --- src/charts/row-chart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/charts/row-chart.js b/src/charts/row-chart.js index 7043be121..fc3d6dab1 100644 --- a/src/charts/row-chart.js +++ b/src/charts/row-chart.js @@ -46,7 +46,7 @@ export class RowChart extends CapMixin(ColorMixin(MarginMixin)) { this._gap = 5; this._fixedBarHeight = false; - this._rowCssClass = 'row'; + this._rowCssClass = '_row'; this._titleRowCssClass = 'titlerow'; this._renderTitleLabel = false;