We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 18c715e + 5d9c751 commit fbf7310Copy full SHA for fbf7310
dj_gui_api_server/DJConnector.py
@@ -77,7 +77,7 @@ def list_tables(jwt_payload, schema_name):
77
elif table_type == 'Computed':
78
tables_dict_list['computed_tables'].append(dj.utils.to_camel_case(table_name))
79
elif table_type == 'Part':
80
- table_name_parts = '__array_response__electrode_response'.split('__')
+ table_name_parts = table_name.split('__')
81
tables_dict_list['part_tables'].append(DJConnector.snake_to_camel_case(table_name_parts[1]) + '.' + DJConnector.snake_to_camel_case(table_name_parts[2]))
82
else:
83
print(table_name + ' is of unknown table type')
0 commit comments