mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-09 23:15:58 -06:00
Ensure that username should be visible in the 'Connect to Server' popup when service and user name both specified. Fixes #5871
This commit is contained in:
parent
e230787f21
commit
ab642344d4
@ -11,6 +11,7 @@ notes for it.
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
release_notes_5_0
|
||||
release_notes_4_30
|
||||
release_notes_4_29
|
||||
release_notes_4_28
|
||||
|
20
docs/en_US/release_notes_5_0.rst
Normal file
20
docs/en_US/release_notes_5_0.rst
Normal file
@ -0,0 +1,20 @@
|
||||
************
|
||||
Version 5.0
|
||||
************
|
||||
|
||||
Release date: 2021-02-25
|
||||
|
||||
This release contains a number of bug fixes and new features since the release of pgAdmin4 4.30.
|
||||
|
||||
New features
|
||||
************
|
||||
|
||||
|
||||
Housekeeping
|
||||
************
|
||||
|
||||
|
||||
Bug fixes
|
||||
*********
|
||||
|
||||
| `Issue #5871 <https://redmine.postgresql.org/issues/5871>`_ - Ensure that username should be visible in the 'Connect to Server' popup when service and user name both specified.
|
@ -1,11 +1,11 @@
|
||||
<form name="frmPassword" id="frmPassword" style="height: 100%; width: 100%" onsubmit="return false;">
|
||||
<div>
|
||||
<div><span class="font-weight-bold" >
|
||||
{% if service %}
|
||||
{{ _('Please enter the password for the user to connect the server - "{0}"').format(server_label) }}
|
||||
{% else %}
|
||||
{% if username %}
|
||||
{{ _('Please enter the password for the user \'{0}\' to connect the server - "{1}"').format(username,
|
||||
server_label) }}
|
||||
{% else %}
|
||||
{{ _('Please enter the password for the user to connect the server - "{0}"').format(server_label) }}
|
||||
{% endif %}
|
||||
</span></div>
|
||||
<div class="input-group row py-2">
|
||||
|
Loading…
Reference in New Issue
Block a user