diff options
| author | polo <ordipolo@gmx.fr> | 2025-09-06 00:33:22 +0200 |
|---|---|---|
| committer | polo <ordipolo@gmx.fr> | 2025-09-06 00:33:22 +0200 |
| commit | c5d9df5c42b5d2522e2a06b5f40422c1bbf497ab (patch) | |
| tree | ce07ebbbc6212f2185ee9ab8024168e934319865 /src/view/templates/modify_block.php | |
| parent | 7be773469a719d4170dcb6418b85277540c08b3f (diff) | |
| download | cms-c5d9df5c42b5d2522e2a06b5f40422c1bbf497ab.tar.gz cms-c5d9df5c42b5d2522e2a06b5f40422c1bbf497ab.tar.bz2 cms-c5d9df5c42b5d2522e2a06b5f40422c1bbf497ab.zip | |
correction bug au nombre de colonne lors du changement de la présentation d'un bloc
Diffstat (limited to 'src/view/templates/modify_block.php')
| -rw-r--r-- | src/view/templates/modify_block.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/templates/modify_block.php b/src/view/templates/modify_block.php index dae8994..2514085 100644 --- a/src/view/templates/modify_block.php +++ b/src/view/templates/modify_block.php | |||
| @@ -27,7 +27,7 @@ if($child_node->getNodeData()->getPresentation() !== null){ | |||
| 27 | <?= $this->makePresentationOptions($child_node->getNodeData()->getPresentation()->getName()) ?> | 27 | <?= $this->makePresentationOptions($child_node->getNodeData()->getPresentation()->getName()) ?> |
| 28 | </select> | 28 | </select> |
| 29 | <div id="cols_min_width_edit_<?= $child_node->getId() ?>" class="<?= ($child_node->getNodeData()->getPresentation()->getName() === 'grid' ? '' : 'hidden') ?>"> | 29 | <div id="cols_min_width_edit_<?= $child_node->getId() ?>" class="<?= ($child_node->getNodeData()->getPresentation()->getName() === 'grid' ? '' : 'hidden') ?>"> |
| 30 | <label for="cols_min_width_select_' . $child_node->getId() . '">Largeur minimum </label> | 30 | <label for="cols_min_width_select_<?= $child_node->getId() ?>">Largeur minimum </label> |
| 31 | <input type="number" id="cols_min_width_select_<?= $child_node->getId() ?>" onchange="changeColsMinWidth(<?= $child_node->getId() ?>)" min="150" max="400" value="<?= $child_node->getNodeData()->getColsMinWidth() ?>"> pixels | 31 | <input type="number" id="cols_min_width_select_<?= $child_node->getId() ?>" onchange="changeColsMinWidth(<?= $child_node->getId() ?>)" min="150" max="400" value="<?= $child_node->getNodeData()->getColsMinWidth() ?>"> pixels |
| 32 | </div> | 32 | </div> |
| 33 | </div> | 33 | </div> |
