Skip to content

Commit

Permalink
Fix: Grid layout for filesystem view
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Jan 11, 2025
1 parent 5605699 commit ed841c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This is a small bug fix release.
### Changelog

- Fix: Memory leak in playlist search
- Fix: Grid layout for filesystem view

***

Expand Down
2 changes: 1 addition & 1 deletion htdocs/js/viewBrowseFilesystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function viewBrowseFilesystemListClickHandler(event, target) {
);
return;
}
if (settings['view' + app.id].mode === 'table') {
if (settings['view' + app.id].mode === 'grid') {
updateGrid(obj, app.id, function(card, data) {
parseFilesystemUpdate(card, data);
});
Expand Down

0 comments on commit ed841c2

Please sign in to comment.