1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

switch to single quotes when possible

This commit is contained in:
dkanada 2021-02-07 00:24:47 +09:00 committed by GitHub
parent 50b9e1adf4
commit 336843b0ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ function getPluginCardHtml(plugin, pluginConfigurationPages) {
if (plugin.HasImage) {
html += `<img src="/Plugins/${plugin.Id}/${plugin.Version}/Image" style="width:100%" />`;
} else {
html += `<span class="cardImageIcon material-icons extension"></span>`;
html += '<span class="cardImageIcon material-icons extension"></span>';
}
html += configPageUrl ? '</a>' : '</div>';