Skip to content

Commit 42a0f6d

Browse files
committed
fix: Added comma between inputs when composing ARIA label strings
1 parent f458058 commit 42a0f6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/blockly/core/inputs/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ export class Input {
413413
);
414414
}
415415
}
416-
return labels.join(' ');
416+
return labels.join(', ');
417417
}
418418

419419
/**

0 commit comments

Comments
 (0)