Display: fix menu item order - refs BT#20895

pull/5432/head
NicoDucou 1 year ago
parent 6bf309f78a
commit 498100cadf
  1. 8
      var/vue_templates/components/layout/SidebarNotLoggedIn.vue

@ -48,10 +48,6 @@ const menuItems = computed(() => [
}
],
},
{
label: t("FAQ"),
command: async () => await router.push({ name: "Faq" }),
},
{
label: t("Registration"),
url: "/main/auth/inscription.php",
@ -60,6 +56,10 @@ const menuItems = computed(() => [
label: t("Demo"),
command: async () => await router.push({ name: "Demo" }),
},
{
label: t("FAQ"),
command: async () => await router.push({ name: "Faq" }),
},
{
label: t("Contact"),
url: "/contact",

Loading…
Cancel
Save