You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: static/app/views/monitors/components/monitorForm.tsx
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -260,7 +260,8 @@ function MonitorForm({
260
260
<InputGroup>
261
261
<TextField
262
262
name="name"
263
-
aria-label={t('Name')}
263
+
label={t('Name')}
264
+
hideLabel
264
265
placeholder={t('My Cron Job')}
265
266
required
266
267
stacked
@@ -269,7 +270,8 @@ function MonitorForm({
269
270
{monitor&&(
270
271
<TextField
271
272
name="slug"
272
-
aria-label={t('Slug')}
273
+
label={t('Slug')}
274
+
hideLabel
273
275
help={tct(
274
276
'The [strong:monitor-slug] is used to uniquely identify your monitor within your organization. Changing this slug will require updates to any instrumented check-in calls.',
0 commit comments