Chore: Adds typings to lodash (#16590)

This commit is contained in:
Hugo Häggmark
2019-04-15 12:11:52 +02:00
committed by GitHub
parent b267e96087
commit 7eabc282e9
88 changed files with 149 additions and 145 deletions

View File

@@ -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);