fix(#312): tabbing order through tables (variables etc) was inconsistent or impossible

resolves #312
This commit is contained in:
Michał Szymborski
2023-10-03 21:24:59 +02:00
parent 2e600838b2
commit 494b484cd9
7 changed files with 16 additions and 7 deletions

View File

@@ -116,10 +116,11 @@ const MultipartFormParams = ({ item, collection }) => {
<input
type="checkbox"
checked={param.enabled}
tabIndex="-1"
className="mr-3 mousetrap"
onChange={(e) => handleParamChange(e, param, 'enabled')}
/>
<button onClick={() => handleRemoveParams(param)}>
<button tabIndex="-1" onClick={() => handleRemoveParams(param)}>
<IconTrash strokeWidth={1.5} size={20} />
</button>
</div>