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']);?>"; var configLayout = "<?php echo $this->getData(['user', $this->getUser('id'), 'view', 'config']);?>";
// Non défini, valeur par défaut // Non défini, valeur par défaut
if (configLayout == null) { if (configLayout == "") {
configLayout = "setup"; configLayout = "setup";
} }

View File

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