Skip to content

Commit 902600e

Browse files
regression: RelativeUrlSettingInput not stretching filling the available width (#41105)
1 parent 5857fb0 commit 902600e

1 file changed

Lines changed: 11 additions & 9 deletions

File tree

apps/meteor/client/views/admin/settings/Setting/inputs/RelativeUrlSettingInput.tsx

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,17 @@ function RelativeUrlSettingInput({
3535
</FieldLabel>
3636
{hasResetButton && <ResetSettingButton onClick={onResetButtonClick} />}
3737
</FieldRow>
38-
<UrlInput
39-
id={_id}
40-
value={getAbsoluteUrl(value || '')}
41-
placeholder={placeholder}
42-
disabled={disabled}
43-
readOnly={readonly}
44-
autoComplete={autocomplete === false ? 'off' : undefined}
45-
onChange={handleChange}
46-
/>
38+
<FieldRow>
39+
<UrlInput
40+
id={_id}
41+
value={getAbsoluteUrl(value || '')}
42+
placeholder={placeholder}
43+
disabled={disabled}
44+
readOnly={readonly}
45+
autoComplete={autocomplete === false ? 'off' : undefined}
46+
onChange={handleChange}
47+
/>
48+
</FieldRow>
4749
{hint && <FieldHint>{hint}</FieldHint>}
4850
</Field>
4951
);

0 commit comments

Comments
 (0)