mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
Fixed an issue where the database list in the new connection window is not visible. Fixes #6121
This commit is contained in:
parent
eb3cd689a1
commit
f8497d4e7a
@ -35,3 +35,4 @@ Bug fixes
|
||||
| `Issue #6077 <https://redmine.postgresql.org/issues/6077>`_ - Fixed accessibility issues in various dialogs.
|
||||
| `Issue #6084 <https://redmine.postgresql.org/issues/6084>`_ - Fixed TypeError exception in schema diff when selected any identical object.
|
||||
| `Issue #6096 <https://redmine.postgresql.org/issues/6096>`_ - Updated deployment documentation, refer correctly to uWSGI where Gunicorn had been referenced.
|
||||
| `Issue #6121 <https://redmine.postgresql.org/issues/6121>`_ - Fixed an issue where the database list in the new connection window is not visible.
|
||||
|
@ -14,6 +14,10 @@ AND
|
||||
db.datname in ({{db_restrictions}})
|
||||
{% endif %}
|
||||
|
||||
{% if show_system_objects %}
|
||||
AND db.datistemplate in (false, {{show_system_objects}})
|
||||
{% else %}
|
||||
AND db.datistemplate in (false)
|
||||
{% endif %}
|
||||
|
||||
ORDER BY datname;
|
||||
|
Loading…
Reference in New Issue
Block a user