Skip to content

Commit

Permalink
Bug corrections: Client & serveur & test process
Browse files Browse the repository at this point in the history
- Features.test: Code response from google has changed
404 -> 405
- IconWithTooltip: the key was missing from the map iteration
- API /action/compare/:controlUuid/:setStatus didn't implement header authentification
- clent, update npm packages: react react-dom react-intl react-router-dom storybook @types/react @types/react-dom @vitejs/plugin-react "eslint-plugin-react-hooks "eslint-plugin-react-refresh sass typescript
- server, update npm packages: swagger-ui-express yaml @types/node nodemon ts-jest typescript
  • Loading branch information
dHENRY committed Jul 3, 2024
1 parent 3a844eb commit 9c746e2
Show file tree
Hide file tree
Showing 9 changed files with 2,482 additions and 2,269 deletions.
4,139 changes: 2,185 additions & 1,954 deletions client/package-lock.json

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mytinydc-utdon-client",
"private": true,
"version": "1.5.0",
"version": "1.6.0",
"description": "Application for tracking obsolete FOSS applications - UI",
"type": "module",
"scripts": {
Expand All @@ -18,35 +18,35 @@
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@tabler/icons-webfont": "^2.47.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.6.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^6.6.8",
"react-multi-select-component": "^4.3.4",
"react-redux": "^8.1.3",
"react-router-dom": "^6.22.3"
"react-router-dom": "^6.24.1"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/blocks": "^8.0.8",
"@storybook/preview-api": "^8.0.8",
"@storybook/react": "^8.0.8",
"@storybook/react-vite": "^8.0.8",
"@storybook/react-vite": "^8.1.11",
"@storybook/test": "^8.0.8",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"sass": "^1.74.1",
"storybook": "^8.0.8",
"sass": "^1.77.6",
"storybook": "^8.1.11",
"storybook-addon-remix-react-router": "^3.0.0",
"typescript": "^5.4.4",
"typescript": "^5.5.3",
"vite": "^4.5.3"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/IconWithTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export const IconWithTooltip = ({
</div>
<div className="tooltipbody">
{tooltipContent &&
tooltipContent.split("\n").map((line) => {
return <div>{line}</div>;
tooltipContent.split("\n").map((line, idx) => {
return <div key={`tooltipbody_${idx}`}>{line}</div>;
})}
</div>
</div>
Expand Down
Loading

0 comments on commit 9c746e2

Please sign in to comment.