mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-14 01:13:49 -06:00
Debugger listener starting error displayed if user try to debug plpgsql cs_fmt_browser_version function that contains parameters. Fixes #1238
This commit is contained in:
parent
f5249f2e18
commit
2c6f6609bc
@ -9,7 +9,7 @@
|
||||
{% if data %}
|
||||
{% for dict_item in data %}
|
||||
{% if 'type' in dict_item and 'value' in dict_item %}
|
||||
{% if dict_item['type'] == 'text' and dict_item['value'] != 'NULL' %}
|
||||
{% if dict_item['value'] != 'NULL' %}
|
||||
{{ dict_item['value']|qtLiteral }}::{{ dict_item['type'] }}{% if not loop.last %}, {% endif %}
|
||||
{% elif dict_item['value'] == 'NULL' %}
|
||||
{{ dict_item['value'] }}::{{ dict_item['type'] }}{% if not loop.last %}, {% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user