Skip to content

Commit

Permalink
Merge pull request #31 from sitegeist/bugfix/emptyAltAtttributesByDef…
Browse files Browse the repository at this point in the history
…ault

BUGFIX: Render empty alt attributes by default as is required by web standards
  • Loading branch information
mficzel committed Dec 16, 2020
2 parents 9b0ac67 + 49398b3 commit 6954b64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Resources/Private/Fusion/Prototypes/Image.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ prototype(Sitegeist.Kaleidoscope:Image) < prototype(Neos.Fusion:Component) {
imageSource = null
srcset = null
sizes = null
alt = null
alt = ''
title = null
class = null

Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Fusion/Prototypes/Picture.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ prototype(Sitegeist.Kaleidoscope:Picture) < prototype(Neos.Fusion:Component) {
srcset = null
sizes = null
sources = null
alt = null
alt = ''
title = null
class = null
content = ''
Expand Down

0 comments on commit 6954b64

Please sign in to comment.