Skip to content

Commit

Permalink
FIX: branding img src link broken (#394)
Browse files Browse the repository at this point in the history
Double quotes not closed properly for src
  • Loading branch information
OutdatedGuy committed Jul 24, 2022
1 parent 9ab3c1f commit 563612b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/templates.dart
Expand Up @@ -513,7 +513,7 @@ const List<String> _indexHtmlBrandingPicture = [
' <picture id="splash-branding">',
' <source srcset="splash/img/branding-1x.png 1x, splash/img/branding-2x.png 2x, splash/img/branding-3x.png 3x, splash/img/branding-4x.png 4x" media="(prefers-color-scheme: light)">',
' <source srcset="splash/img/branding-dark-1x.png 1x, splash/img/branding-dark-2x.png 2x, splash/img/branding-dark-3x.png 3x, splash/img/branding-dark-4x.png 4x" media="(prefers-color-scheme: dark)">',
' <img class="[BRANDINGMODE]" aria-hidden="true" src="splash/img/branding-1x.png alt=""/>',
' <img class="[BRANDINGMODE]" aria-hidden="true" src="splash/img/branding-1x.png" alt=""/>',
' </picture>',
];

Expand Down

0 comments on commit 563612b

Please sign in to comment.