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