Skip to content

Commit

Permalink
Add margin top and rename emptyState variable
Browse files Browse the repository at this point in the history
  • Loading branch information
EMaksy committed Mar 6, 2024
1 parent 911e682 commit 4707d08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/pages/ClusterDetails/SBDDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const getStatusPill = (status) =>

function SBDDetails({ sbdDevices }) {
const sbdDetailsHeader = 'SBD/Fencing';
const emptyStateMsg = 'No additional fencing details to display.';
const emptySBDListText = 'No additional fencing details to display.';
return (
<>
<div className="mt-8">
Expand All @@ -26,7 +26,7 @@ function SBDDetails({ sbdDevices }) {
))}
</div>
) : (
<> {emptyStateMsg}</>
<div className="mt-4">{emptySBDListText}</div>
)}
</>
);
Expand Down

0 comments on commit 4707d08

Please sign in to comment.