Fixed syntax error while refreshing the existing synonyms. Fixes #5383

This commit is contained in:
Khushboo Vashi 2020-04-14 13:43:56 +05:30 committed by Akshay Joshi
parent a05acb4f99
commit a0fcb38e68
2 changed files with 3 additions and 2 deletions

View File

@ -46,4 +46,5 @@ Bug fixes
| `Issue #5351 <https://redmine.postgresql.org/issues/5351>`_ - Fixed compilation warnings while building pgAdmin.
| `Issue #5361 <https://redmine.postgresql.org/issues/5361>`_ - Fixes an issue where pgAdmin4 GUI does not display properly in IE 11.
| `Issue #5362 <https://redmine.postgresql.org/issues/5362>`_ - Fixed an issue where the identical packages and sequences visible as different in the schema diff tool.
| `Issue #5371 <https://redmine.postgresql.org/issues/5371>`_ - Fixed tab key navigation for some dialogs.
| `Issue #5371 <https://redmine.postgresql.org/issues/5371>`_ - Fixed tab key navigation for some dialogs.
| `Issue #5383 <https://redmine.postgresql.org/issues/5383>`_ - Fixed syntax error while refreshing the existing synonyms.

View File

@ -311,7 +311,7 @@ class SynonymView(PGChildNodeView, SchemaDiffObjectCompare):
for row in rset['rows']:
return make_json_response(
data=self.blueprint.generate_browser_node(
row['name'],
row['oid'],
scid,
row['name'],
icon="icon-%s" % self.node_type