diff --git a/src/contexts/QueryContext.js b/src/contexts/QueryContext.js
index cd2170138170ddfdaa9f6778b8b90ec465eefa67..cd571a0f892988d8e88b129813d006c9ba5e00a2 100644
--- a/src/contexts/QueryContext.js
+++ b/src/contexts/QueryContext.js
@@ -34,7 +34,7 @@ export function QueryContextProvider({ children }) {
         }
 
         axios
-            .get(api_host + "query/configuration" + configNameString)
+            .get(api_host + "query/configuration" + configNameString, {withCredentials: true})
             .then((response) => {
                 //alert(configNameString)
                 let config = response.data["configuration"];
diff --git a/src/routes/Routes.js b/src/routes/Routes.js
index e922ad06cd171d0b025d1d0073309f5aa161334c..7f9cb1991ed290f9d97cebccf7735a9c0d08dc95 100644
--- a/src/routes/Routes.js
+++ b/src/routes/Routes.js
@@ -87,7 +87,7 @@ export default function Routes() {
 
         </Switch>
 
-      <footer><small>esap-gui version 13 aug 2021 - 13:00</small></footer>
+      <footer><small>esap-gui version 17 aug 2021 - 13:00</small></footer>
     </Router>
   );
 }