We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a69ab0 commit fcbd470Copy full SHA for fcbd470
src/components/DatatableV2/table/Table.tsx
@@ -55,7 +55,7 @@ const Table = <D,>({ table }: { table: DatatableInstance<D> }) => {
55
data-settings-state={showColumnSettings ? 'open' : 'closed'}
56
tabIndex={0}
57
>
58
- {showProgress && <ProgressBar isTop />}
+ {showProgress && <ProgressBar aria-label="Refreshing data" isTop />}
59
<table
60
ref={(ref) => {
61
tableRef.current = ref;
@@ -66,7 +66,7 @@ const Table = <D,>({ table }: { table: DatatableInstance<D> }) => {
66
<Header table={table} />
67
<Body table={table} />
68
</table>
69
- {showProgress && <ProgressBar isBottom />}
+ {showProgress && <ProgressBar aria-hidden isBottom />}
70
</TableRoot>
71
{showColumnSettings && <Settings table={table} />}
72
</>
0 commit comments