Skip to content

Commit ef2d287

Browse files
authored
Small Tweaks to Tiers List (#1368)
1 parent 2310865 commit ef2d287

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

portal-ui/src/screens/Console/Configurations/TiersConfiguration/ListTiersConfiguration.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const ListTiersConfiguration = ({
149149
const name = get(item, `${item.type}.name`, "");
150150

151151
if (name !== null) {
152-
return name;
152+
return <b>{name}</b>;
153153
}
154154

155155
return "";
@@ -302,6 +302,7 @@ const ListTiersConfiguration = ({
302302
label: "Type",
303303
elementKey: "type",
304304
renderFunction: renderTierType,
305+
width: 50,
305306
},
306307
{
307308
label: "Endpoint",

0 commit comments

Comments
 (0)