Merge pull request #1831 from thecodingmachine/fix-language-display

Somes bugs due to i18n implementation
This commit is contained in:
Alexis Faizeau 2022-02-07 17:33:59 +01:00 committed by GitHub
commit 21c198a882
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -53,7 +53,7 @@
<section class="terms-and-conditions"> <section class="terms-and-conditions">
<a style="display: none;" href="traduction">Need for traduction</a> <a style="display: none;" href="traduction">Need for traduction</a>
<p> <p>
{$LL.login.terms()} {@html $LL.login.terms()}
</p> </p>
</section> </section>
{/if} {/if}

View file

@ -69,6 +69,7 @@
} else { } else {
const customMenu = customMenuIframe.get(menu.label); const customMenu = customMenuIframe.get(menu.label);
if (customMenu !== undefined) { if (customMenu !== undefined) {
activeSubMenu = menu;
props = { url: customMenu.url, allowApi: customMenu.allowApi }; props = { url: customMenu.url, allowApi: customMenu.allowApi };
activeComponent = CustomSubMenu; activeComponent = CustomSubMenu;
} else { } else {