Skip to content

Commit

Permalink
Updated chart and form styling
Browse files Browse the repository at this point in the history
  • Loading branch information
thatblindgeye committed Dec 16, 2024
1 parent cbf2057 commit 44edc51
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const DWStatusOverviewDonutChart: React.FC = () => {
);
}
return (
<div style={{ height: '250px', minWidth: '620px', paddingBottom: '12px' }}>
<div style={{ height: '250px', minWidth: '620px' }}>
<ChartDonut
ariaDesc="Distributed workload status overview"
ariaTitle="Status overview donut chart"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const GlobalDistributedWorkloadsWorkloadStatusTab: React.FC = () => (
<StackItem>
<Card isFullHeight data-testid="dw-status-overview-card">
<CardTitle>Status overview</CardTitle>
<CardBody style={{ height: 250 }}>
<CardBody>
<DWStatusOverviewDonutChart />
</CardBody>
</Card>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,18 +142,18 @@ const RegisterVersion: React.FC = () => {
/>
</StackItem>
</Stack>
<RegistrationFormFooter
submitLabel={SubmitLabel.REGISTER_VERSION}
errorName={errorName}
submitError={submitError}
isSubmitDisabled={isSubmitDisabled}
isSubmitting={isSubmitting}
onSubmit={handleSubmit}
onCancel={onCancel}
versionName={versionName}
/>
</Form>
</PageSection>
<RegistrationFormFooter
submitLabel={SubmitLabel.REGISTER_VERSION}
errorName={errorName}
submitError={submitError}
isSubmitDisabled={isSubmitDisabled}
isSubmitting={isSubmitting}
onSubmit={handleSubmit}
onCancel={onCancel}
versionName={versionName}
/>
</ApplicationsPage>
);
};
Expand Down

0 comments on commit 44edc51

Please sign in to comment.