We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ef371 commit eb0c87fCopy full SHA for eb0c87f
package.json
@@ -54,7 +54,7 @@
54
"@types/react": "^16.9.2",
55
"@types/react-dom": "^16.9.0",
56
"@types/shallowequal": "^1.1.1",
57
- "@umijs/fabric": "^1.1.10",
+ "@umijs/fabric": "^2.0.8",
58
"coveralls": "^3.0.6",
59
"cross-env": "^7.0.2",
60
"dayjs": "^1.8.18",
src/panels/DatePanel/DateBody.tsx
@@ -55,7 +55,7 @@ function DateBody<DateType>(props: DateBodyProps<DateType>) {
: []);
if (prefixColumn) {
- headerCells.push(<th key="empty" />);
+ headerCells.push(<th key="empty" aria-label="empty cell" />);
}
for (let i = 0; i < WEEK_DAY_COUNT; i += 1) {
61
headerCells.push(<th key={i}>{weekDaysLocale[(i + weekFirstDay) % WEEK_DAY_COUNT]}</th>);
0 commit comments