Skip to content

Commit

Permalink
Merge pull request #408 from adhocteam/main
Browse files Browse the repository at this point in the history
IE keyboard navigation fix
  • Loading branch information
rahearn authored Mar 23, 2021
2 parents 982e021 + 9497312 commit 6a735e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ parameters:
default: "main"
type: string
sandbox_git_branch: # change to feature branch to test deployment
default: "177-display-external-link-warning"
default: "kw-ie-keyboard-nav"
type: string
prod_new_relic_app_id:
default: "877570491"
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/DatePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ const DateInput = ({
onDateChange={(d) => {
const newDate = d ? d.format(dateFmt) : d;
onChange(newDate);
const input = document.getElementById(name);
if (input) input.focus();
}}
onFocusChange={({ focused }) => {
if (!focused) {
Expand Down

0 comments on commit 6a735e3

Please sign in to comment.