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:
parent
50b9e1adf4
commit
336843b0ba
2 changed files with 2 additions and 2 deletions
|
@ -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>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue