Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-oxd committed May 28, 2024
2 parents 2a21bec + fbf47d8 commit 7f7521c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 7 additions & 2 deletions infrastructure/_tasks/templates/tasks-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,14 @@ spec:
livenessProbe:
exec:
command:
- python manage.py huey_health_check
initialDelaySeconds: 30
- /bin/bash
- '-c'
- python manage.py huey_health_check
initialDelaySeconds: 60
timeoutSeconds: 5
periodSeconds: 60
successThreshold: 1
failureThreshold: 3
securityContext:
seccompProfile:
type: RuntimeDefault
Expand Down
2 changes: 2 additions & 0 deletions src/frontend/src/Components/map/Map.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,11 @@ export default function DriveBCMap(props) {
maximizePanel(panel);
}
}}>
<span id="button-close-side-panel-label" aria-hidden="false" hidden>close side panel</span>
<button
className="close-panel"
aria-label={`${openPanel ? 'close side panel' : ''}`}
aria-labelledby="button-close-side-panel-label"
aria-hidden={`${openPanel ? false : true}`}
tabIndex={`${openPanel ? 0 : -1}`}
onClick={() => togglePanel(panel, resetClickedStates, clickedFeatureRef, updateClickedFeature)}>
Expand Down

0 comments on commit 7f7521c

Please sign in to comment.