Fix Capitalization on Tools Screen (#1305)

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2021-12-07 15:41:18 -08:00
committed by GitHub
parent 20c07a22e3
commit 884321cfce

View File

@@ -112,7 +112,7 @@ const ToolsList = ({ classes }: IConfigurationOptions) => {
{
icon: <TraceIcon />,
configuration_id: "trace",
configuration_label: "trace",
configuration_label: "Trace",
disabled: !hasPermission(CONSOLE_UI_RESOURCE, [
IAM_SCOPES.ADMIN_TRACE_ACTION,
]),
@@ -120,7 +120,7 @@ const ToolsList = ({ classes }: IConfigurationOptions) => {
{
icon: <HealIcon />,
configuration_id: "heal",
configuration_label: "heal",
configuration_label: "Heal",
disabled: !hasPermission(CONSOLE_UI_RESOURCE, [
IAM_SCOPES.ADMIN_HEAL_ACTION,
]),