Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump react-aria from 3.34.3 to 3.35.0 #1381

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion easy-ui-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"lodash": "^4.17.21",
"overlayscrollbars": "^2.3.0",
"overlayscrollbars-react": "^0.5.6",
"react-aria": "^3.34.3",
"react-aria": "^3.35.0",
"react-is": "^18.3.1",
"react-stately": "^3.32.2",
"react-syntax-highlighter": "^15.5.0",
Expand Down
5 changes: 4 additions & 1 deletion easy-ui-react/src/TabPanels/TabPanelsPanels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ export function TabPanelsPanels(props: TabPanelsPanelsProps) {
return null;
}

const selectedItem = collection.getItem(tabListState.selectedKey);
const selectedItem =
tabListState.selectedKey === null
? null
: collection.getItem(tabListState.selectedKey);

return (
<TabPanelsPanel
Expand Down
Loading
Loading