Skip to content
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 public/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "7.3.0"
"version": "7.3.1"
}
2 changes: 1 addition & 1 deletion src/components/CippComponents/CippTenantSelector.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const CippTenantSelector = (props) => {
}, [currentTenant?.value]);

useEffect(() => {
if (tenant && currentTenant?.value) {
if (tenant && currentTenant?.value && currentTenant?.value !== 'AllTenants') {
tenantDetails.refetch();
}
}, [tenant, offcanvasVisible]);
Expand Down
6 changes: 5 additions & 1 deletion src/components/CippTable/CippDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ export const CippDataTable = (props) => {
data: memoizedData,
state: {
columnVisibility,
showSkeletons: getRequestData.isFetching ? getRequestData.isFetching : isFetching,
showSkeletons: getRequestData.isFetchingNextPage
? false
: getRequestData.isFetching
? getRequestData.isFetching
: isFetching,
},
renderEmptyRowsFallback: ({ table }) =>
getRequestData.data?.pages?.[0].Metadata?.QueueMessage ? (
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/side-nav-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ export const SideNavItem = (props) => {
alignItems: "center",
width: "100%",
px: `${indent * 6}px`,
py: "12px",
}}
>
<ButtonBase
Expand All @@ -167,6 +166,7 @@ export const SideNavItem = (props) => {
textAlign: "left",
whiteSpace: "nowrap",
width: "calc(100% - 20px)", // Adjust the width to leave space for the bookmark icon
py: "12px",
}}
{...linkProps}
>
Expand Down
3 changes: 1 addition & 2 deletions src/layouts/top-nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const TopNav = (props) => {
</IconButton>
)}
</Stack>
<Stack alignItems="center" direction="row" spacing={2}>
<Stack alignItems="center" direction="row" spacing={1.5}>
{!mdDown && (
<IconButton color="inherit" onClick={handleThemeSwitch}>
<SvgIcon color="action" fontSize="small">
Expand Down Expand Up @@ -187,7 +187,6 @@ export const TopNav = (props) => {
</Popover>
<CippCentralSearch open={searchDialog.open} handleClose={searchDialog.handleClose} />
<NotificationsPopover />

<AccountPopover
onThemeSwitch={handleThemeSwitch}
paletteMode={settings.currentTheme?.value === "light" ? "dark" : "light"}
Expand Down