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 @types/react from 17.0.76 to 17.0.77 #854

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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
Next Next commit
fix: undefined if deployed from branch and no config exist on main
  • Loading branch information
laszlocph committed Apr 2, 2024
commit ed0d36f694d491d99367f5a808b2cfd37ffb1c14
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