mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix the issue where query tool window turns blank if the user tries to generate a graph on the result. #6500
This commit is contained in:
parent
3ba73ab1d9
commit
30a0fb1cb3
@ -1342,7 +1342,7 @@ WHERE db.datname = current_database()""")
|
||||
|
||||
more_results = True
|
||||
while more_results:
|
||||
if self.row_count > 0:
|
||||
if cur.get_rowcount() > 0:
|
||||
result = []
|
||||
try:
|
||||
if records == -1:
|
||||
|
Loading…
Reference in New Issue
Block a user