mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
don't render hidden columns in table panel (#12911)
This commit is contained in:
committed by
Torkel Ödegaard
parent
277a696fa5
commit
36e808834d
@@ -238,6 +238,10 @@ export class TableRenderer {
|
||||
column.hidden = false;
|
||||
}
|
||||
|
||||
if (column.hidden === true) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (column.style && column.style.preserveFormat) {
|
||||
cellClasses.push('table-panel-cell-pre');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user