This commit is contained in:
burnettk 2024-02-07 17:59:07 -05:00
parent 096fc7befc
commit 6e4ab1617e
No known key found for this signature in database
4 changed files with 4 additions and 3 deletions

View File

@ -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" />);
}
}

View File

@ -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>

View File

@ -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>

View File

@ -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"