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

fix: implemented PR feedback

This commit is contained in:
Daniel 2022-10-25 21:35:03 +02:00 committed by GitHub
parent dba3b81c81
commit b384c5a1af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -2,8 +2,7 @@
<div> <div>
<div class="content-primary"> <div class="content-primary">
<div class="inputContainer"> <div class="inputContainer">
<label class="inputLabel" for="txtSearchPlugins">${Search}</label> <input id="txtSearchPlugins" name="txtSearchPlugins" type="text" is="emby-input" label="${Search}" />
<input id="txtSearchPlugins" name="txtSearchPlugins" type="text" is="emby-input" class="emby-input">
</div> </div>
<div id="noPlugins" class="hide">${MessageNoAvailablePlugins}</div> <div id="noPlugins" class="hide">${MessageNoAvailablePlugins}</div>
<div id="pluginTiles" style="text-align:left;"></div> <div id="pluginTiles" style="text-align:left;"></div>

View file

@ -105,7 +105,7 @@ function onSearchBarType(searchBar) {
card.style.display = 'none'; card.style.display = 'none';
} else { } else {
card.style.display = 'unset'; card.style.display = 'unset';
shown += 1; shown++;
} }
} }
// hide title if no cards are shown // hide title if no cards are shown