From 0fc797f7d072095e4f91bb487c7be743b322b84e Mon Sep 17 00:00:00 2001 From: Pierre Donias Date: Thu, 18 Aug 2022 16:28:50 +0200 Subject: [PATCH] fix(lite): change HTML main element ID from app to root (#6371) XCP-ng web servers already serve an HTML file with a #root element. This allows to use the new version of XO Lite without having to change that HTML file on XCP-ng hosts. --- @xen-orchestra/lite/index.html | 2 +- @xen-orchestra/lite/src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/@xen-orchestra/lite/index.html b/@xen-orchestra/lite/index.html index 11603f878..f1244535f 100644 --- a/@xen-orchestra/lite/index.html +++ b/@xen-orchestra/lite/index.html @@ -7,7 +7,7 @@ Vite App -
+
diff --git a/@xen-orchestra/lite/src/main.ts b/@xen-orchestra/lite/src/main.ts index 0e0758454..b40fde9b2 100644 --- a/@xen-orchestra/lite/src/main.ts +++ b/@xen-orchestra/lite/src/main.ts @@ -10,4 +10,4 @@ app.use(createPinia()); app.use(router); app.component("FontAwesomeIcon", FontAwesomeIcon); -app.mount("#app"); +app.mount("#root");