Fix lodash imports

Signed-off-by: resynth1943 <resynth1943@tutanota.com>
This commit is contained in:
resynth1943 2020-08-26 23:04:56 +01:00
parent b294ec6427
commit 2c20afc047
16 changed files with 16 additions and 16 deletions

View file

@ -16,7 +16,7 @@ limitations under the License.
*/
import {MatrixClientPeg} from '../MatrixClientPeg';
import _uniq from 'lodash/uniq';
import _uniq from "lodash/uniq";
import {Room} from "matrix-js-sdk/src/matrix";
/**

View file

@ -23,7 +23,7 @@ limitations under the License.
* @event module:utils~ResizeNotifier#"middlePanelResizedNoisy"
*/
import { EventEmitter } from "events";
import { throttle } from "lodash";
import throttle from "lodash/throttle";
export default class ResizeNotifier extends EventEmitter {
constructor() {