give autofocus to url field in link post

This commit is contained in:
keyan 2021-08-24 15:03:02 -05:00
parent fd75885c76
commit f4c108951d
1 changed files with 1 additions and 1 deletions

View File

@ -87,12 +87,12 @@ export function LinkForm ({ item, editThreshold }) {
name='title'
overrideValue={data?.pageTitle}
required
autoFocus
/>
<Input
label='url'
name='url'
required
autoFocus
hint={editThreshold
? <Countdown date={editThreshold} />
: null}