Returned lodash to old version becase of lint problems
This commit is contained in:
parent
725a7a95a9
commit
e78c26b26a
4 changed files with 1438 additions and 492 deletions
1923
src/frontend/package-lock.json
generated
1923
src/frontend/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -42,7 +42,7 @@
|
|||
"esbuild": "^0.21.5",
|
||||
"file-saver": "^2.0.5",
|
||||
"framer-motion": "^11.2.10",
|
||||
"lodash-es": "^4.17.21",
|
||||
"lodash": "^4.17.21",
|
||||
"lucide-react": "^0.395.0",
|
||||
"million": "^3.1.11",
|
||||
"moment": "^2.30.1",
|
||||
|
|
@ -117,6 +117,7 @@
|
|||
"@types/react": "^18.3.3",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"@types/uuid": "^9.0.8",
|
||||
"@types/lodash": "4.17.5",
|
||||
"@vitejs/plugin-react-swc": "^3.7.0",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"eslint": "^9.5.0",
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
import { useEffect, useRef, useState } from "react";
|
||||
import { KeyPairListComponentType } from "../../types/components";
|
||||
|
||||
import { cloneDeep } from "lodash-es";
|
||||
import { classNames } from "../../utils/utils";
|
||||
import IconComponent from "../genericIconComponent";
|
||||
import { Input } from "../ui/input";
|
||||
import { cloneDeep } from "lodash";
|
||||
|
||||
export default function KeypairListComponent({
|
||||
value,
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ import ForwardedIconComponent from "../genericIconComponent";
|
|||
import { Alert, AlertDescription, AlertTitle } from "../ui/alert";
|
||||
import TableOptions from "./components/TableOptions";
|
||||
import resetGrid from "./utils/reset-grid-columns";
|
||||
import cloneDeep from "lodash-es";
|
||||
import cloneDeep from "lodash";
|
||||
|
||||
interface TableComponentProps extends AgGridReactProps {
|
||||
columnDefs: NonNullable<AgGridReactProps["columnDefs"]>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue