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
@@ -41,8 +43,19 @@ function ProjectToolbarSettings({organization, project, params: {projectId}}: Pr
41
43
42
44
// additional data/props that is related to rendering of form field rather than data
43
45
label: t('Allowed Origins'),
44
-
help: t(
45
-
'Domain URLs where the dev toolbar can be installed and access your data. Wildcards (*) are supported. Please separate multiple entries with a newline.'
46
+
help: (
47
+
<div>
48
+
{t('Domains where the dev toolbar is allowed to access your data.')}
49
+
<br/>
50
+
{t(
51
+
'Protocol and port are optional; wildcard subdomains (*) are are supported.'
52
+
)}
53
+
<br/>
54
+
{tct(
55
+
'Example: [code:localhost] is equivalent to [code:http://localhost] or [code:localhost:80]',
56
+
{code: <code/>}
57
+
)}
58
+
</div>
46
59
),
47
60
getData: data=>({options: data}),
48
61
},
@@ -52,12 +65,24 @@ function ProjectToolbarSettings({organization, project, params: {projectId}}: Pr
0 commit comments