Skip to content

Commit d30e967

Browse files
authored
Merge pull request #146 from CodeF0x/column-heading-#144
Fix for #144
2 parents f92271c + 5ffa696 commit d30e967

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/css/main.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ input:disabled:hover {
161161
grid-row: 2;
162162
justify-self: center;
163163
-webkit-app-region: no-drag;
164+
display: none; /** Issue #144 */
164165
}
165166

166167
#by-name:hover,

src/js/View.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,13 @@ module.exports = class View {
200200
self._currentlyPlaying.classList.add('song-container-active');
201201
}
202202

203-
// Search input field is disabled by default -> enable
203+
// Issue #135
204204
self._search.disabled = false;
205+
206+
// Issue #144
207+
[self._sortByAlbum, self._sortByArtist, self._sortByName].forEach(
208+
heading => (heading.style.display = 'block')
209+
);
205210
}
206211

207212
/**

0 commit comments

Comments
 (0)