fix: update lodash.debounce and defer imports

This commit is contained in:
Sarah Vaupel 2022-04-21 17:27:13 +02:00
parent bbd88310e9
commit f03dae66e9
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
const DEBUG_MODE = /localhost/.test(window.location.href) ? 0 : 0;
import * as defer from 'lodash.defer';
import defer from 'lodash.defer';
class Overhang {
colSpan;

View File

@ -1,4 +1,4 @@
import * as debounce from 'lodash.debounce';
import debounce from 'lodash.debounce';
import { Utility } from '../../core/utility';
import { EventManager, EventWrapper, EVENT_TYPE } from '../../lib/event-manager/event-manager';