mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed following issues:
- Process watcher made fixed width with header changes, time details rounded to 2 decimals - Query history will show "No query history" if no query fired. Query editor default size increased. - Fixed a bug where New folder create button not working when in List mode and No files/folder present. - Other minor improvements.
This commit is contained in:
committed by
Akshay Joshi
parent
2a359d9d77
commit
7ac4e2a9d9
@@ -105,10 +105,14 @@ class RestoreMessage(IProcessDesc):
|
||||
def message(self):
|
||||
name, host, port = self.get_server_details()
|
||||
|
||||
return _("Restoring backup on the server '{0}'...").format(
|
||||
return _("Restoring backup on the server '{0}'").format(
|
||||
"{0} ({1}:{2})".format(name, host, port),
|
||||
)
|
||||
|
||||
@property
|
||||
def type_desc(self):
|
||||
return _("Restoring backup on the server")
|
||||
|
||||
def details(self, cmd, args):
|
||||
name, host, port = self.get_server_details()
|
||||
res = '<div>'
|
||||
|
||||
@@ -46,7 +46,7 @@ class RestoreMessageTest(BaseTestGenerator):
|
||||
cmd="/test_path/pg_restore"
|
||||
),
|
||||
extected_msg="Restoring backup on the server "
|
||||
"'test_restore_server (localhost:5444)'...",
|
||||
"'test_restore_server (localhost:5444)'",
|
||||
expetced_details_cmd='/test_path/pg_restore --file '
|
||||
'"restore_file" --host "localhost"'
|
||||
' --port "5444" --username "postgres" '
|
||||
|
||||
Reference in New Issue
Block a user