mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Remove Backgrid and Backform. Fixes #6134
This commit is contained in:
committed by
Akshay Joshi
parent
b128ba2f57
commit
ca8b5c68fd
@@ -1947,10 +1947,9 @@ def convert_data_to_dict(conn, result):
|
||||
column['type_code'] = items[1][1]
|
||||
columns.append(column)
|
||||
|
||||
# We need to convert result from 2D array to dict for BackGrid
|
||||
# BackGrid do not support for 2D array result as it it Backbone Model
|
||||
# based grid, This Conversion is not an overhead as most of the time
|
||||
# result will be smaller
|
||||
# We need to convert result from 2D array to dict.
|
||||
# This Conversion is not an overhead as most of the time
|
||||
# result will be smaller.
|
||||
_tmp_result = []
|
||||
for row in result:
|
||||
temp = dict()
|
||||
|
||||
Reference in New Issue
Block a user