Fix layouts non initialisés

This commit is contained in:
Fred Tempez 2024-09-19 09:53:52 +02:00
parent e3bc6ce1d3
commit da9d8d9d62
2 changed files with 3 additions and 2 deletions

View File

@ -68,7 +68,7 @@ $(document).ready(function () {
var configLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'config']);?>";
// Non défini, valeur par défaut
if (configLayout == null) {
if (configLayout == "") {
configLayout = "setup";
}

View File

@ -68,8 +68,9 @@ $( document ).ready(function() {
* Sélection des onglets
*/
var pageLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'page']);?>";
console.log(pageLayout);
// Non défini, valeur par défaut
if (pageLayout == null) {
if (pageLayout == "") {
pageLayout = "content";
}
// Tout cacher