Fixed #7222 - DataTable: Colspan not working correctly when selectionMode='single' in Column

pull/7160/merge
tugcekucukoglu 2025-02-10 09:56:27 +03:00
parent ff3b7a58a9
commit 8a50610fd6
1 changed files with 0 additions and 1 deletions

View File

@ -580,7 +580,6 @@ export default {
let hiddenColLength = 0; let hiddenColLength = 0;
this.columns.forEach((column) => { this.columns.forEach((column) => {
if (this.columnProp(column, 'selectionMode') === 'single') hiddenColLength--;
if (this.columnProp(column, 'hidden')) hiddenColLength++; if (this.columnProp(column, 'hidden')) hiddenColLength++;
}); });