Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fewwy committed Jul 5, 2024
1 parent 8ede404 commit 106aaf9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/Components/ObjectsModal/ObjectsModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const ObjectsModal = ({
);
const updateFilters = (payload) =>
dispatch(updateWorkloadsObjectsListFilters(payload));

const onClose = () => {
setIsModalOpen(false);
resetFilters(filters, WORKLOADS_OBJECTS_TABLE_INITIAL_STATE, updateFilters);
Expand Down
6 changes: 3 additions & 3 deletions src/Utilities/Workloads.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { SortByDirection } from '@patternfly/react-table';
import { omitBy } from 'lodash/omitBy';
import { cloneDeep } from 'lodash/cloneDeep';
import { isEmpty } from 'lodash/isEmpty';
import omitBy from 'lodash/omitBy';
import cloneDeep from 'lodash/cloneDeep';
import isEmpty from 'lodash/isEmpty';

export const SEVERITY_OPTIONS = [
{
Expand Down

0 comments on commit 106aaf9

Please sign in to comment.