fix lint
This commit is contained in:
parent
096fc7befc
commit
6e4ab1617e
|
@ -451,7 +451,7 @@ export default function ProcessInstanceListTable({
|
|||
if (!(processInstance.status in statusesToExcludeTaskButton)) {
|
||||
currentRow.push(<td>{buttonElement}</td>);
|
||||
} else {
|
||||
currentRow.push(<td />);
|
||||
currentRow.push(<td aria-label="Empty table placeholder" />);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -137,6 +137,7 @@ export default function MyTasks() {
|
|||
{row.processModelDisplayName}
|
||||
</Link>
|
||||
</td>
|
||||
{/* eslint-disable-next-line jsx-a11y/control-has-associated-label */}
|
||||
<td className="actions-cell">
|
||||
<ProcessInstanceRun processModel={processModel} />
|
||||
</td>
|
||||
|
|
|
@ -81,7 +81,7 @@ export default function SecretList() {
|
|||
</Link>
|
||||
</td>
|
||||
<td>{(row as any).username}</td>
|
||||
<td>
|
||||
<td aria-label="Delete">
|
||||
<MdDelete onClick={() => handleDeleteSecret((row as any).key)} />
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -106,7 +106,7 @@ export default function SecretShow() {
|
|||
<td>{params.key}</td>
|
||||
{displaySecretValue && (
|
||||
<>
|
||||
<td>
|
||||
<td aria-label="Secret value">
|
||||
<TextInput
|
||||
id="secret_value"
|
||||
name="secret_value"
|
||||
|
|
Loading…
Reference in New Issue