Remove tabindex from DurationInput
This commit is contained in:
parent
7132346a24
commit
4cceded7bd
1 changed files with 0 additions and 2 deletions
|
|
@ -194,7 +194,6 @@ const DurationInput = React.forwardRef<HTMLInputElement, Props>(
|
|||
onKeyDown={handleKeyDown}
|
||||
placeholder="mm"
|
||||
size={3}
|
||||
tabIndex={props.tabIndex}
|
||||
/>
|
||||
<span>:</span>
|
||||
<Input
|
||||
|
|
@ -212,7 +211,6 @@ const DurationInput = React.forwardRef<HTMLInputElement, Props>(
|
|||
onKeyDown={handleKeyDown}
|
||||
placeholder="ss"
|
||||
size={2}
|
||||
tabIndex={props.tabIndex ? props.tabIndex + 1 : undefined}
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue