Skip to content

Commit

Permalink
Updated lodash imports to import from base 'lodash' because a raw git…
Browse files Browse the repository at this point in the history
… clone -> npm install currently errors out.
  • Loading branch information
Peter Di Pasquale committed Dec 12, 2024
1 parent 7e46dc6 commit 0e7fccc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/services/filtering/FilterService.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { EventEmitter } from 'eventemitter3';
import FilterURLHandler from './FilterUrlHandler';
import isEqual from 'lodash/isequal';
import pickBy from 'lodash/pickby';
import isEmpty from 'lodash/isempty';
import { isEqual,pickBy,isEmpty } from 'lodash';

class FilterService extends EventEmitter {
constructor(openmct, config) {
Expand Down
3 changes: 1 addition & 2 deletions src/services/filtering/FilterUrlHandler.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import isEqual from 'lodash/isequal';
import isEmpty from 'lodash/isempty';
import { isEqual,isEmpty } from 'lodash';

const GLOBAL_FILTER_PARAM_PREFIX = "global_filter_"

Expand Down

0 comments on commit 0e7fccc

Please sign in to comment.