Skip to content

Commit e6df20f

Browse files
atrakhConvex, Inc.
authored andcommitted
dashboard: integration form spacing fixes (#36921)
GitOrigin-RevId: a2297d758d8c8d47e4189956f5c1ca977c22895b
1 parent 701ac2b commit e6df20f

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

npm-packages/dashboard/src/components/integrations/AxiomConfigurationForm.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ export function AxiomConfigurationForm({
111111
value={formState.values.apiKey}
112112
type={showApiKey ? "text" : "password"}
113113
onChange={formState.handleChange}
114+
className="max-w-full"
114115
id="apiKey"
115116
placeholder="xxxx-xxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
116117
action={() => setShowApiKey(!showApiKey)}

npm-packages/dashboard/src/components/integrations/DatadogConfigurationForm.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export function DatadogConfigurationForm({
130130
type={showApiKey ? "text" : "password"}
131131
onChange={formState.handleChange}
132132
id="ddApiKey"
133+
className="max-w-full"
133134
placeholder="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
134135
action={() => setShowApiKey(!showApiKey)}
135136
Icon={showApiKey ? EyeNoneIcon : EyeOpenIcon}

npm-packages/dashboard/src/components/integrations/WebhookConfigurationForm.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export function WebhookConfigurationForm({
3737
onChange={formState.handleChange}
3838
id="url"
3939
label="URL"
40+
placeholder="Enter a URL to send logs to"
4041
error={formState.errors.url}
4142
/>
4243
<div className="flex justify-end">

0 commit comments

Comments
 (0)