Set the tab index on the RSS forms view

This commit is contained in:
Jackson Harper 2023-10-02 13:13:02 +08:00
parent c9aea5248e
commit ef8a75f681

View file

@ -107,6 +107,8 @@ export default function AddRssFeed(): JSX.Element {
<FormInput
type="url"
key="feedUrl"
tabIndex={1}
autoFocus={true}
value={feedUrl}
placeholder={'Enter the feed URL here'}
onChange={(e) => {
@ -132,6 +134,7 @@ export default function AddRssFeed(): JSX.Element {
Back
</Button>
<Button
tabIndex={1}
style="ctaDarkYellow"
css={{ marginRight: '10px' }}
onClick={subscribe}