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

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