Fixed an issue where Operators collection node throwing an error. #6325

This commit is contained in:
Akshay Joshi 2023-05-25 11:56:45 +05:30
parent 4baaff4566
commit cba3dc9457
2 changed files with 1 additions and 4 deletions

View File

@ -50,3 +50,4 @@ Bug fixes
| `Issue #6279 <https://github.com/pgadmin-org/pgadmin4/issues/6279>`_ - Fix incorrect number of foreign tables displayed. Show column comments in RE-SQL.
| `Issue #6280 <https://github.com/pgadmin-org/pgadmin4/issues/6280>`_ - View SQL tab not quoting column comments.
| `Issue #6281 <https://github.com/pgadmin-org/pgadmin4/issues/6281>`_ - VarChar Field Sizes are missing from Query's Grid header.
| `Issue #6325 <https://github.com/pgadmin-org/pgadmin4/issues/6325>`_ - Fixed an issue where Operators collection node throwing an error.

View File

@ -169,10 +169,6 @@ class OperatorView(PGChildNodeView):
# Set the template path for the SQL scripts
self.template_path = \
self.BASE_TEMPLATE_PATH.format(self.manager.version)
self.template_path = compile_template_path(
self.BASE_TEMPLATE_PATH,
self.manager.version
)
return f(*args, **kwargs)