Skip to content

Commit

Permalink
bug fix (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
TianWuwt authored Jan 10, 2025
1 parent ab279b3 commit 198cd04
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ui/src/pages/Tenant/Detail/Backup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ export default function Backup() {
<BasicInfo
info={tenantDetail.info}
source={tenantDetail.source}
ns={ns}
name={name}
/>
</Col>
)}
Expand Down
2 changes: 2 additions & 0 deletions ui/src/pages/Tenant/Detail/Connection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ const TenantConnection: React.FC = () => {
info={tenantDetail.info}
source={tenantDetail.source}
loading={loading}
ns={ns}
name={name}
/>
</Col>
)}
Expand Down
7 changes: 6 additions & 1 deletion ui/src/pages/Tenant/Detail/Monitor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ export default function Monitor() {
groupLabels={['tenant_name']}
basicInfo={
tenantDetail && (
<BasicInfo info={tenantDetail.info} source={tenantDetail.source} />
<BasicInfo
info={tenantDetail.info}
source={tenantDetail.source}
ns={ns}
name={name}
/>
)
}
/>
Expand Down
7 changes: 6 additions & 1 deletion ui/src/pages/Tenant/Detail/NewBackup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,12 @@ export default function NewBackup() {
<Form initialValues={initialValues} form={form} onFinish={handleSubmit}>
{tenantDetail && (
<Col span={24}>
<BasicInfo info={tenantDetail.info} source={tenantDetail.source} />
<BasicInfo
info={tenantDetail.info}
source={tenantDetail.source}
ns={ns}
name={name}
/>
</Col>
)}

Expand Down
2 changes: 2 additions & 0 deletions ui/src/pages/Tenant/Detail/Topo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ export default function Topo() {
<BasicInfo
info={tenantTopoData.info}
source={tenantTopoData.source}
ns={ns}
name={name}
style={{ backgroundColor: 'rgb(245, 248, 254)', border: 'none' }}
/>
}
Expand Down

0 comments on commit 198cd04

Please sign in to comment.