Fixed an issue where the database list in the new connection window is not visible. Fixes #6121

This commit is contained in:
Nikhil Mohite 2021-01-11 13:03:15 +05:30 committed by Akshay Joshi
parent eb3cd689a1
commit f8497d4e7a
2 changed files with 5 additions and 0 deletions

View File

@ -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.

View File

@ -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;