ryan 6 лет назад
Родитель
Сommit
00942ec882
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      public/app/core/table_model.ts

+ 2 - 2
public/app/core/table_model.ts

@@ -5,14 +5,14 @@ import { Column, TableData } from '@grafana/ui';
  * Extends the standard Column class with variables that get
  * Extends the standard Column class with variables that get
  * mutated in the angular table panel.
  * mutated in the angular table panel.
  */
  */
-interface AngularTableColumn extends Column {
+interface MutableColumn extends Column {
   title?: string;
   title?: string;
   sort?: boolean;
   sort?: boolean;
   desc?: boolean;
   desc?: boolean;
 }
 }
 
 
 export default class TableModel implements TableData {
 export default class TableModel implements TableData {
-  columns: AngularTableColumn[];
+  columns: MutableColumn[];
   rows: any[];
   rows: any[];
   type: string;
   type: string;
   columnMap: any;
   columnMap: any;