Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade axios from 1.6.7 to 1.6.8 #855

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@types/node": "^12.20.55",
"@types/react": "^17.0.75",
"@types/react-dom": "^17.0.23",
"axios": "^1.6.7",
"axios": "^1.6.8",
"date-fns": "^2.30.0",
"helm-react-ui": "github:gimlet-io/helm-react-ui#master",
"js-yaml": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion web/dashboard/src/components/deployStatus/deployStatus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function DeployStatusModal(props) {
const key = runningDeploy.trackingId

let stack = connectedAgents[env].stacks.find(s => s.service.name === app)
const config = envConfigs[env].find((config) => config.app === app)
const config = envConfigs[env]?.find((config) => config.app === app)

if (!stack) { // for apps we haven't deployed yet
stack={service:{name: app}}
Expand Down
Loading