Skip to content

Commit 0e1eec9

Browse files
authored
Merge pull request #3874 from bmsimp/patch-3
Update CippCustomVariables.jsx to Reflect Lowercase Best Practice
2 parents dd3f469 + 7be11d3 commit 0e1eec9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/CippComponents/CippCustomVariables.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ const CippCustomVariables = ({ id }) => {
9292
<CardContent>
9393
<Alert severity="info" sx={{ mb: 2 }}>
9494
{id === "AllTenants"
95-
? "Global variables are key-value pairs that can be used to store additional information for All Tenants. These are applied to templates in standards using the format %VariableName%. If a tenant has a custom variable with the same name, the tenant's variable will take precedence."
96-
: "Custom variables are key-value pairs that can be used to store additional information about a tenant. These are applied to templates in standards using the format %VariableName%."}
95+
? "Global variables are key-value pairs that can be used to store additional information for All Tenants. These are applied to templates in standards using the format %variablename%. If a tenant has a custom variable with the same name, the tenant's variable will take precedence."
96+
: "Custom variables are key-value pairs that can be used to store additional information about a tenant. These are applied to templates in standards using the format %variablename%."}
9797
</Alert>
9898
<CippDataTable
9999
queryKey={`CustomVariables_${id}`}

0 commit comments

Comments
 (0)