mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Adds typings to lodash (#16590)
This commit is contained in:
@@ -52,7 +52,7 @@ export class TablePanelEditorCtrl {
|
||||
|
||||
addColumn() {
|
||||
const columns = transformers[this.panel.transform].getColumns(this.panelCtrl.dataRaw);
|
||||
const column = _.find(columns, { text: this.addColumnSegment.value });
|
||||
const column: any = _.find(columns, { text: this.addColumnSegment.value });
|
||||
|
||||
if (column) {
|
||||
this.panel.columns.push(column);
|
||||
|
||||
Reference in New Issue
Block a user