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(); }