feat: Subscription URL TextField use multiline (#761)
*Subscription link that are too long can make reading difficult, so use multiline TextField.
This commit is contained in:
parent
1c8fb3392a
commit
15ee1e531b
@ -188,7 +188,12 @@ export const ProfileViewer = forwardRef<ProfileViewerRef, Props>(
|
|||||||
name="url"
|
name="url"
|
||||||
control={control}
|
control={control}
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<TextField {...text} {...field} label={t("Subscription URL")} />
|
<TextField
|
||||||
|
{...text}
|
||||||
|
{...field}
|
||||||
|
multiline
|
||||||
|
label={t("Subscription URL")}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user