Browse Source

Fix cell coloring

Anton 7 years ago
parent
commit
355e76a48e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/plugins/panel/table/renderer.ts

+ 1 - 1
public/app/plugins/panel/table/renderer.ts

@@ -284,7 +284,7 @@ export class TableRenderer {
       cellClass = ' class="' + cellClasses.join(' ') + '"';
     }
 
-    columnHtml = '<td' + cellClass + cellStyle + '>' + columnHtml + '</td>';
+    columnHtml = '<td' + cellClass + cellStyle + textStyle + '>' + columnHtml + '</td>';
     return columnHtml;
   }