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:
Majokeiko 2023-09-07 16:14:42 +08:00 committed by GitHub
parent 1c8fb3392a
commit 15ee1e531b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,7 +188,12 @@ export const ProfileViewer = forwardRef<ProfileViewerRef, Props>(
name="url"
control={control}
render={({ field }) => (
<TextField {...text} {...field} label={t("Subscription URL")} />
<TextField
{...text}
{...field}
multiline
label={t("Subscription URL")}
/>
)}
/>