File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
frontend/components/environments Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -135,14 +135,19 @@ export const CreateEnvironmentDialog = (props: { appId: string }) => {
135
135
All Organisation Admins will have accesss to this Environment.
136
136
</ Alert >
137
137
138
- < Input
139
- value = { sanitizeInput ( name ) }
140
- setValue = { setName }
141
- label = "Environment name"
142
- required
143
- maxLength = { 32 }
144
- data-autofocus
145
- />
138
+ < div className = "space-y-2" >
139
+ < Input
140
+ value = { sanitizeInput ( name ) }
141
+ setValue = { setName }
142
+ label = "Environment name"
143
+ required
144
+ maxLength = { 32 }
145
+ data-autofocus
146
+ />
147
+ < p className = "text-xs text-neutral-500" >
148
+ Use up to 32 characters. Only letters, numbers, hyphens and underscores allowed.
149
+ </ p >
150
+ </ div >
146
151
147
152
< div className = "flex justify-end" >
148
153
< Button type = "submit" variant = "primary" isLoading = { loading } >
You can’t perform that action at this time.
0 commit comments