Skip to content

Commit 884321c

Browse files
authored
Fix Capitalization on Tools Screen (#1305)
Signed-off-by: Daniel Valdivia <[email protected]>
1 parent 20c07a2 commit 884321c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

portal-ui/src/screens/Console/Tools/ToolsPanel/ToolsList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,15 @@ const ToolsList = ({ classes }: IConfigurationOptions) => {
112112
{
113113
icon: <TraceIcon />,
114114
configuration_id: "trace",
115-
configuration_label: "trace",
115+
configuration_label: "Trace",
116116
disabled: !hasPermission(CONSOLE_UI_RESOURCE, [
117117
IAM_SCOPES.ADMIN_TRACE_ACTION,
118118
]),
119119
},
120120
{
121121
icon: <HealIcon />,
122122
configuration_id: "heal",
123-
configuration_label: "heal",
123+
configuration_label: "Heal",
124124
disabled: !hasPermission(CONSOLE_UI_RESOURCE, [
125125
IAM_SCOPES.ADMIN_HEAL_ACTION,
126126
]),

0 commit comments

Comments
 (0)