Skip to content

Commit

Permalink
fix(ui): Fix UI inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuzikar authored and mmelko committed Sep 2, 2024
1 parent 8c6f3c8 commit 6edb48b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hawtio/src/plugins/runtime/Metrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const Metrics: React.FunctionComponent = () => {
.map((metric, index) => {
return (
<div key={index}>
{metric.name} :
{metric.name}:&nbsp;
<span>
{metric.value} {metric.unit ?? ''}
{metric.available && 'of' + metric.available + ' ' + (metric.availableUnit ?? metric.unit ?? '')}
Expand Down
5 changes: 5 additions & 0 deletions packages/hawtio/src/ui/page/HawtioHeader.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@
#hawtio-header-user-dropdown-toggle .pf-v5-c-dropdown__toggle-text {
margin-left: 5px;
}

.pf-v5-c-menu__item a {
text-decoration: none;
color: unset;
}

0 comments on commit 6edb48b

Please sign in to comment.