Skip to content
Snippets Groups Projects
Unverified Commit 15ee1e53 authored by Majokeiko's avatar Majokeiko Committed by GitHub
Browse files

feat: Subscription URL TextField use multiline (#761)

*Subscription link that are too long can make reading difficult, so use multiline TextField.
parent 1c8fb339
No related branches found
No related tags found
No related merge requests found
...@@ -188,7 +188,12 @@ export const ProfileViewer = forwardRef<ProfileViewerRef, Props>( ...@@ -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")}
/>
)} )}
/> />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment