From dc1133edd6e711e8945f9296c71487f6dfef970f Mon Sep 17 00:00:00 2001 From: Ivan Maslov Date: Fri, 5 Mar 2021 09:51:40 +0300 Subject: [PATCH] Init dropdown in index js with orchestrator --- Sources/pyOpenRPA/Orchestrator/Web/Index.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Sources/pyOpenRPA/Orchestrator/Web/Index.js b/Sources/pyOpenRPA/Orchestrator/Web/Index.js index 5af28fa7..81609dcd 100644 --- a/Sources/pyOpenRPA/Orchestrator/Web/Index.js +++ b/Sources/pyOpenRPA/Orchestrator/Web/Index.js @@ -886,9 +886,10 @@ $(document).ready(function() { } /// v1.2.0 pyOpenRPA Init defs - mGlobal.pyOpenRPA.ServerJSInitDef() // Recieve JS from server (if exist) and then call anothe url ServerData - mGlobal.pyOpenRPA.ServerDataRefreshDef() // Init the refresh data def from server side - mGlobal.pyOpenRPA.ServerLogListRefreshDef() // Init the refresh data def from the log window - mGlobal.pyOpenRPA.ServerLogListDoRenderTrue() // Init button to freeze/unfreeze textare with logs + mGlobal.pyOpenRPA.ServerJSInitDef(); // Recieve JS from server (if exist) and then call anothe url ServerData + mGlobal.pyOpenRPA.ServerDataRefreshDef(); // Init the refresh data def from server side + mGlobal.pyOpenRPA.ServerLogListRefreshDef(); // Init the refresh data def from the log window + mGlobal.pyOpenRPA.ServerLogListDoRenderTrue(); // Init button to freeze/unfreeze textare with logs + $('.ui.dropdown').dropdown(); }); \ No newline at end of file