ignore lodash _.move

This commit is contained in:
Alexander Zobnin
2020-05-29 10:40:04 +03:00
parent 3abb7de116
commit 3a50146df7

View File

@@ -402,7 +402,8 @@ export class ZabbixQueryController extends QueryCtrl {
moveFunction(func, offset) { moveFunction(func, offset) {
const index = this.target.functions.indexOf(func); const index = this.target.functions.indexOf(func);
(_ as any).move(this.target.functions, index, index + offset); // @ts-ignore
_.move(this.target.functions, index, index + offset);
this.targetChanged(); this.targetChanged();
} }