fix: Do not use custom input labels for connection positions and move start (#9932)

* fix: Do not use custom input labels on move start announcements

* fix: do not use custom input labels on input labels subset
This commit is contained in:
Michael Harvey
2026-05-26 12:52:29 -04:00
committed by GitHub
parent 40a584163b
commit e2cf797cfe
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -346,7 +346,7 @@ export function getInputLabelsSubset(block: BlockSvg, input: Input): string[] {
.filter((input) => input.isVisible())
.map(
(input) =>
input.getLabel(Verbosity.TERSE) ||
input.getLabel(Verbosity.TERSE, false) ||
Msg['INPUT_LABEL_INDEX'].replace(
'%1',
(input.getIndex() + 1).toString(),
+1 -1
View File
@@ -2051,7 +2051,7 @@ export class BlockSvg
block = block.getNextBlock();
}
if (count <= 1) {
return computeAriaLabel(this, aria.Verbosity.TERSE);
return computeAriaLabel(this, aria.Verbosity.TERSE, false);
}
const labelTemplate = Msg['BLOCK_LABEL_STACK_BLOCKS'];