1
0
mirror of https://github.com/azlux/botamusique synced 2024-11-23 13:56:17 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Terry Geng
6afdc78360 fix(web): Directory selection being wrongly ignored while jumping through pages.
Fix #305.
2022-01-15 22:39:47 -05:00
Terry Geng
82fa35d4b0 build: Fix python-magic install. 2022-01-15 22:38:34 -05:00
3 changed files with 9 additions and 7 deletions

View File

@ -1,6 +1,6 @@
flask
yt-dlp
python-magic
python-magic-bin
Pillow
mutagen
requests

View File

@ -536,15 +536,18 @@ function displayLibraryControls(data) {
$('.library-delete').hide();
}
const select = $('#filter-dir');
const dataList = $('#upload-target-dirs');
select.find('option').remove();
dataList.find('option').remove();
const dirs = [];
filter_dir.find('option').each(function(i, dir_element){
dirs.push(dir_element.value);
});
if (data.dirs.length > 0) {
console.log(data.dirs);
data.dirs.forEach(function(dir) {
$('<option value="' + dir + '">' + dir + '</option>').appendTo(select);
$('<option value="' + dir + '">').appendTo(dataList);
if(!dirs.includes(dir)) {
$('<option value="' + dir + '">' + dir + '</option>').appendTo(filter_dir);
$('<option value="' + dir + '">').appendTo(dataList);
}
});
}

View File

@ -180,7 +180,6 @@
<label for="filter-dir">{{ tr('directory') }}</label>
<div id="filter-path" class="input-group mb-2">
<select class="form-control form-control-sm" id="filter-dir" disabled>
<option value="">.</option>
</select>
</div>