Skip to content

Commit 2b04e4c

Browse files
authored
Merge pull request #945 from AppQuality/develop
release 20240801
2 parents 5691532 + 41db053 commit 2b04e4c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+4328
-147
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@zendeskgarden/react-forms": "^8.49.0",
1414
"@zendeskgarden/react-tables": "^8.62.0",
1515
"@zendeskgarden/react-theming": "^8.48.2",
16-
"@zendeskgarden/svg-icons": "^6.31.1",
16+
"@zendeskgarden/svg-icons": "^7.2.0",
1717
"date-fns": "^2.28.0",
1818
"formik": "^2.2.9",
1919
"i18n-iso-countries": "^7.3.0",
@@ -37,11 +37,13 @@
3737
"react-scroll": "^1.8.7",
3838
"styled-components": "^6.1.1",
3939
"typescript": "^4.6.2",
40+
"uuid": "^10.0.0",
4041
"web-vitals": "^2.1.4",
4142
"yup": "^0.32.11"
4243
},
4344
"scripts": {
4445
"start": "craco start",
46+
"start:ssl": "craco --openssl-legacy-provider start",
4547
"build": "craco build",
4648
"test": "react-scripts test",
4749
"recover": "yarn install --check-files",
@@ -87,6 +89,7 @@
8789
"@types/react-scroll": "^1.8.3",
8890
"@types/react-transition-group": "^4.4.5",
8991
"@types/styled-components": "^5.1.24",
92+
"@types/uuid": "^10.0.0",
9093
"@typescript-eslint/eslint-plugin": "^5.26.0",
9194
"@typescript-eslint/parser": "^5.26.0",
9295
"cz-conventional-changelog": "3.3.0",

src/app/theme.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ import {
66
// todo: check green 600
77
export const SEVERITY_COLORS: Record<Severities, string> = {
88
critical: baseTheme.palette.red[900],
9-
high: baseTheme.palette.yellow[600],
9+
high: baseTheme.palette.yellow[700],
1010
medium: baseTheme.palette.blue[600],
1111
low: baseTheme.palette.green[600],
1212
};
1313

1414
export const SEVERITY_HUES: Record<Severities, string> = {
15-
critical: baseTheme.palette.red[900],
16-
high: baseTheme.palette.yellow[600],
17-
medium: baseTheme.palette.blue[600],
18-
low: baseTheme.palette.green[600],
15+
critical: `${baseTheme.palette.red[900]}14`,
16+
high: `${baseTheme.palette.yellow[600]}14`,
17+
medium: `${baseTheme.palette.blue[600]}14`,
18+
low: `${baseTheme.palette.green[600]}14`,
1919
};
2020
// temporary fix for the bug state colors
2121
export const BUG_STATE_COLORS: Record<

src/assets/empty-insights.svg

Lines changed: 230 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

src/assets/icons/copy-icon.svg

Lines changed: 8 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
File renamed without changes.
Lines changed: 3 additions & 0 deletions
Loading

src/common/Pages.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import Catalog from 'src/pages/Services';
2323
import Manual from 'src/pages/Manual';
2424
import Videos from 'src/pages/Videos';
2525
import Video from 'src/pages/Video';
26+
import InsightsPage from 'src/pages/Insights';
2627
import SentryWrapper from 'src/features/SentryWrapper';
2728
import { Redirect } from './Redirect';
2829

@@ -88,6 +89,10 @@ const Pages = () => {
8889
path={`/${langPrefix}/campaigns/:campaignId/videos`}
8990
element={<Videos />}
9091
/>
92+
<Route
93+
path={`/${langPrefix}/campaigns/:campaignId/insights`}
94+
element={<InsightsPage />}
95+
/>
9196
<Route
9297
path={`/${langPrefix}/campaigns/:campaignId/videos/:videoId`}
9398
element={<Video />}

0 commit comments

Comments
 (0)