From b50c30d9f43bc57d1ea279dfa04e2d40899c8236 Mon Sep 17 00:00:00 2001 From: Angelillo15 Date: Wed, 15 May 2024 20:01:20 +0000 Subject: [PATCH] Update VariableBox component styling regarding project rules --- .../scripts/components/server/startup/VariableBox.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/resources/scripts/components/server/startup/VariableBox.tsx b/resources/scripts/components/server/startup/VariableBox.tsx index ba3a4fe47e..cffadd8dd7 100644 --- a/resources/scripts/components/server/startup/VariableBox.tsx +++ b/resources/scripts/components/server/startup/VariableBox.tsx @@ -60,15 +60,15 @@ const VariableBox = ({ variable }: Props) => { return ( +

{!variable.isEditable && ( - Read Only + Read Only )} {variable.name}

} > - + {useSwitch ? ( <> @@ -128,9 +128,7 @@ const VariableBox = ({ variable }: Props) => { )} -

- {variable.description} -

+

{variable.description}

); };