We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f92271c + 5ffa696 commit d30e967Copy full SHA for d30e967
2 files changed
src/css/main.css
@@ -161,6 +161,7 @@ input:disabled:hover {
161
grid-row: 2;
162
justify-self: center;
163
-webkit-app-region: no-drag;
164
+ display: none; /** Issue #144 */
165
}
166
167
#by-name:hover,
src/js/View.js
@@ -200,8 +200,13 @@ module.exports = class View {
200
self._currentlyPlaying.classList.add('song-container-active');
201
202
203
- // Search input field is disabled by default -> enable
+ // Issue #135
204
self._search.disabled = false;
205
+
206
+ // Issue #144
207
+ [self._sortByAlbum, self._sortByArtist, self._sortByName].forEach(
208
+ heading => (heading.style.display = 'block')
209
+ );
210
211
212
/**
0 commit comments