dashboard: also account for removal of rows in non-rotated tables with top headers

This commit is contained in:
Stephan de Wit 2024-08-07 16:04:04 +02:00
parent 4694acbfe4
commit cf9da42380

View File

@ -149,6 +149,7 @@ export default class BaseTableWidget extends BaseWidget {
let options = this.tables[id].options;
if (!options.rotation && rowIdentifier == null) {
$table.children('.grid-row').remove();
$table.children('.flextable-row').remove();
this.tables[id].data = data;
}