From 3831c22abc9552dcc8ac3339c49e9bff480e0989 Mon Sep 17 00:00:00 2001 From: "RIO\\adrian.dordea" Date: Thu, 30 Apr 2020 12:03:55 +0300 Subject: [PATCH] TVB-2681: fix rendering of selector in step 2 of local conn --- .../web/controllers/spatial/local_connectivity_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework_tvb/tvb/interfaces/web/controllers/spatial/local_connectivity_controller.py b/framework_tvb/tvb/interfaces/web/controllers/spatial/local_connectivity_controller.py index 8cc9bac07e..e60ef4dc6b 100644 --- a/framework_tvb/tvb/interfaces/web/controllers/spatial/local_connectivity_controller.py +++ b/framework_tvb/tvb/interfaces/web/controllers/spatial/local_connectivity_controller.py @@ -183,7 +183,7 @@ def step_2(self, **kwargs): left_side_form.existentEntitiesSelect.data = current_lconn.gid.hex template_specification = dict(title="Surface - Local Connectivity") template_specification['mainContent'] = 'spatial/local_connectivity_step2_main' - template_specification['existentEntitiesInputList'] = left_side_form + template_specification['existentEntitiesInputList'] = self.render_adapter_form(left_side_form) template_specification['loadExistentEntityUrl'] = LOAD_EXISTING_URL template_specification['resetToDefaultUrl'] = RELOAD_DEFAULT_PAGE_URL template_specification['next_step_url'] = '/spatial/localconnectivity/step_1'