Skip to content

Commit

Permalink
Merge pull request jellyfin#2375 from jellyfin/fix-no-repository-message
Browse files Browse the repository at this point in the history
fix: message appearing after adding repositories
  • Loading branch information
dkanada committed Feb 4, 2021
2 parents a63444e + 35296a8 commit bd297ef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/controllers/dashboard/plugins/repositories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ function populateList(options) {
html += '</div>';
if (!options.repositories.length) {
options.noneElement.classList.remove('hide');
} else {
options.noneElement.classList.add('hide');
}

options.listElement.innerHTML = html;
Expand Down

0 comments on commit bd297ef

Please sign in to comment.