Skip to content

Commit 81b3517

Browse files
fussel178Ludwig Richter
authored and
Ludwig Richter
committed
fix(common): Update eventbus debug widget due to breaking changes in @react-spectrum/table
1 parent 03e9051 commit 81b3517

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@adobe/react-spectrum": "^3.9.0",
6868
"@babel/core": "^7.12.9",
6969
"@fliegwerk/logsemts": "^0.4.0-0",
70-
"@react-spectrum/table": "^3.0.0-beta.1",
70+
"@react-spectrum/table": "3.0.0-beta.1",
7171
"@react-spectrum/tabs": "^3.0.1",
7272
"@rollup/plugin-commonjs": "^19.0.0",
7373
"@rollup/plugin-image": "^2.0.6",

packages/telestion-client-common/src/widgets/eventbus-debug-widget/components/details-table.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
Cell,
33
Column,
44
Row,
5-
Table as RSTable,
5+
TableView,
66
TableBody,
77
TableHeader
88
} from '@react-spectrum/table';
@@ -14,14 +14,14 @@ import { buildDetails } from './build-details';
1414
// so we don't have to worry about that.
1515
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-unused-vars
1616
const cssLoader = (
17-
<RSTable aria-label="none">
17+
<TableView aria-label="none">
1818
<TableHeader columns={[]}>
1919
{column => <Column>{column}</Column>}
2020
</TableHeader>
2121
<TableBody items={[]}>
2222
{item => <Row key={item}>{key => <Cell>{item[key]}</Cell>}</Row>}
2323
</TableBody>
24-
</RSTable>
24+
</TableView>
2525
);
2626

2727
/**

0 commit comments

Comments
 (0)