mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Changed functions to arrow functions for only-arrow-functions rule.
This commit is contained in:
@@ -48,7 +48,7 @@ export class ColumnOptionsCtrl {
|
||||
if (!this.panelCtrl.table) {
|
||||
return [];
|
||||
}
|
||||
return _.map(this.panelCtrl.table.columns, function(col: any) {
|
||||
return _.map(this.panelCtrl.table.columns, (col: any) => {
|
||||
return col.text;
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user