Skip to content

Commit 2b02469

Browse files
author
Jonathan
committed
fix toggle #2950
1 parent 9b3d7ea commit 2b02469

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"docs": "node ./src/docs/make.js",
3636
"docs-watch": "node ./src/docs/make.js --watch",
3737
"release": "npm run eslint && npm run test:silent && npm run build",
38-
"release:version": "npm run clean && node build/change-version.js \"$npm_config_argv_0\" && npm run release",
38+
"release:version": "npm run release && node build/change-version.js",
3939
"prepare": "husky install",
4040
"prettier": "prettier --ignore-unknown --write .",
4141
"eslint": "npm run prettier && npx eslint --ext .html,.ts ."

src/js/display/calendar/date-display.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default class DateDisplay {
5757
const div = document.createElement('div');
5858
div.setAttribute('data-action', ActionTypes.selectDay);
5959
div.role = 'gridcell';
60-
div.tabIndex = 0;
60+
div.tabIndex = -1;
6161
container.appendChild(div);
6262

6363
// if hover is supported then add the events

0 commit comments

Comments
 (0)