mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-10 23:45:58 -06:00
Resolved a bug about listing file type listing, 'All Files' were listed
twice in some cases.
This commit is contained in:
parent
38bb45ec86
commit
28af92d386
@ -1436,7 +1436,7 @@ if (
|
||||
} else {
|
||||
select_box += '<option value="' + t +'">' +
|
||||
(t == '*' ? '{{ _('All Files') }}' : t) + "</option>";
|
||||
have_all_types = (t == '*');
|
||||
have_all_types = (have_all_types || (t == '*'));
|
||||
}
|
||||
i++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user