-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
231 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
}, | ||
"dependencies": { | ||
"@api-platform/admin": "^3.4.3", | ||
"@api-platform/api-doc-parser": "^0.16.1", | ||
"@fontsource/poppins": "^4.5.10", | ||
"@tailwindcss/forms": "^0.5.3", | ||
"formik": "^2.2.9", | ||
|
@@ -18,8 +19,10 @@ | |
"next": "^13.2.1", | ||
"postcss": "^8.4.21", | ||
"react": "^18.2.0", | ||
"react-admin": "^4.12.3", | ||
"react-dom": "^18.2.0", | ||
"react-query": "^3.39.3" | ||
"react-query": "^3.39.3", | ||
"react-router-dom": "^6.14.2" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.21.0", | ||
|
@@ -36,5 +39,10 @@ | |
"peerDependencies": { | ||
"@babel/core": "^7.19.0", | ||
"@popperjs/core": "^2.11.6" | ||
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@api-platform/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/lib/layout/Error.js b/lib/layout/Error.js | ||
index ff42479b1eb353c1e3e9fb118f2e340bbd5556fc..70f45adf58814e1d65a085b8a38725bb794e45af 100644 | ||
--- a/lib/layout/Error.js | ||
+++ b/lib/layout/Error.js | ||
@@ -11,8 +11,7 @@ var __rest = (this && this.__rest) || function (s, e) { | ||
}; | ||
import React from 'react'; | ||
import { Title, useTranslate } from 'react-admin'; | ||
-import { Accordion, AccordionDetails, AccordionSummary, Box, Button, Typography, } from '@mui/material'; | ||
-import { styled } from '@mui/material/styles/index.js'; // eslint-disable-line import/extensions | ||
+import { styled, Accordion, AccordionDetails, AccordionSummary, Box, Button, Typography, } from '@mui/material'; | ||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore.js'; // eslint-disable-line import/extensions | ||
import HistoryIcon from '@mui/icons-material/History.js'; // eslint-disable-line import/extensions | ||
import RefreshIcon from '@mui/icons-material/Refresh.js'; // eslint-disable-line import/extensions |
Oops, something went wrong.