File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export function computeAriaLabel(
5151 verbosity === Verbosity . LOQUACIOUS && getParentToolboxCategoryLabel ( block ) ,
5252 verbosity >= Verbosity . STANDARD && getDisabledLabel ( block ) ,
5353 verbosity >= Verbosity . STANDARD && getCollapsedLabel ( block ) ,
54- verbosity >= Verbosity . STANDARD && getReplaceableLabel ( block ) ,
54+ verbosity >= Verbosity . STANDARD && getShadowBlockLabel ( block ) ,
5555 verbosity >= Verbosity . STANDARD && getInputCountLabel ( block ) ,
5656 ]
5757 . filter ( ( label ) => ! ! label )
@@ -284,7 +284,7 @@ function getCollapsedLabel(block: BlockSvg) {
284284 * @returns A label indicating that the block is a shadow (if it is), otherwise
285285 * undefined.
286286 */
287- function getReplaceableLabel ( block : BlockSvg ) {
287+ function getShadowBlockLabel ( block : BlockSvg ) {
288288 return block . isShadow ( ) ? Msg [ 'BLOCK_LABEL_REPLACEABLE' ] : undefined ;
289289}
290290
You can’t perform that action at this time.
0 commit comments