Skip to content

Commit

Permalink
UI bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachid Snoussi committed Aug 25, 2021
1 parent d74c18e commit b165c1a
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
EmptyStateBody,
Divider,
Card,
CardTitle,
CardHeader,
CardBody,
} from "@patternfly/react-core";
Expand Down Expand Up @@ -154,13 +155,14 @@ class PreApprovalCheckForm extends React.Component {
if (result) {
var title = "Pre-approved with an interest rate of " + interestRate;
alert = (

<Card>
<CardHeader>
<Title headingLevel="h2" size="xl">
<CardTitle headingLevel="h2" size="xl">
Result
</Title>
<Divider />
</CardTitle>
</CardHeader>
<Divider />
<CardBody>
<AlertGroup>
<Alert
Expand All @@ -176,11 +178,11 @@ class PreApprovalCheckForm extends React.Component {
alert = (
<Card>
<CardHeader>
<Title headingLevel="h2" size="xl">
<CardTitle headingLevel="h2" size="xl">
Result
</Title>
<Divider />
</CardTitle>
</CardHeader>
<Divider />
<CardBody>
<AlertGroup>
<Alert
Expand All @@ -205,7 +207,7 @@ class PreApprovalCheckForm extends React.Component {

return (
<Bullseye>
<Stack gutter="md">
<Stack hasGutter="true">
<StackItem>
<Title headingLevel="h1" size="4xl">
Loan Pre-Approval Check
Expand Down

0 comments on commit b165c1a

Please sign in to comment.