Skip to content

Commit

Permalink
fix: Correct alt text footnote spacing (#42504)
Browse files Browse the repository at this point in the history
Add a space between the two sentences of the alt text footnote.

A space was lacking between the two sentences within the alt text
footnote. This occurred due to the way React parses the separate link
element found within this particular footnote. Originally an appropriate
space was included in the first sentence, but it was accidentally
removed entirely within #38115 to avoid i18n script errors.
  • Loading branch information
dcalhoun authored Jul 18, 2022
1 parent 8011374 commit ec8b279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/block-library/src/image/edit.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ export class ImageEdit extends Component {
<>
{ __(
'Describe the purpose of the image. Leave empty if the image is purely decorative.'
) }
) }{ ' ' }
<FooterMessageLink
href={
'https://www.w3.org/WAI/tutorials/images/decision-tree/'
Expand Down

0 comments on commit ec8b279

Please sign in to comment.