From 3a50146df7980d6f1a9364649963e3ae1048fbf5 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Fri, 29 May 2020 10:40:04 +0300 Subject: [PATCH] ignore lodash _.move --- src/datasource-zabbix/query.controller.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/datasource-zabbix/query.controller.ts b/src/datasource-zabbix/query.controller.ts index 5342970..b220f9b 100644 --- a/src/datasource-zabbix/query.controller.ts +++ b/src/datasource-zabbix/query.controller.ts @@ -402,7 +402,8 @@ export class ZabbixQueryController extends QueryCtrl { moveFunction(func, offset) { 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(); }