Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/blockly/core/block_aria_composer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion packages/blockly/core/block_svg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'];
Expand Down
Loading