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}
|
onKeyDown={handleKeyDown}
|
||||||
placeholder="mm"
|
placeholder="mm"
|
||||||
size={3}
|
size={3}
|
||||||
tabIndex={props.tabIndex}
|
|
||||||
/>
|
/>
|
||||||
<span>:</span>
|
<span>:</span>
|
||||||
<Input
|
<Input
|
||||||
|
|
@ -212,7 +211,6 @@ const DurationInput = React.forwardRef<HTMLInputElement, Props>(
|
||||||
onKeyDown={handleKeyDown}
|
onKeyDown={handleKeyDown}
|
||||||
placeholder="ss"
|
placeholder="ss"
|
||||||
size={2}
|
size={2}
|
||||||
tabIndex={props.tabIndex ? props.tabIndex + 1 : undefined}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue