Skip to content

Commit

Permalink
Merge branch 'release/1.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Fischer committed Jun 21, 2024
2 parents 23d29d3 + d48be0c commit c07a54a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Classes/Xclass/ContainerPreviewRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public function renderPageModulePreviewContent(GridColumnItem $item): string
protected function getColumnCollapsedState(int $recordUid, int $colPos, array $col): bool
{
$collapseId = $recordUid . ContainerGridColumn::CONTAINER_COL_POS_DELIMITER_V12 . $colPos;
if ($this->getBackendUser()->uc['moduleData']['list']['containerExpanded'][$collapseId] ?? false) {
if (isset($this->getBackendUser()->uc['moduleData']['list']['containerExpanded'][$collapseId])) {
$collapsed = $this->getBackendUser()->uc['moduleData']['list']['containerExpanded'][$collapseId] > 0;
} else {
$collapsed = (bool)($col['collapsed'] ?? false);
Expand Down
4 changes: 2 additions & 2 deletions Documentation/guides.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
interlink-shortcode="evoweb/sf-books"
/>
<project title="ew_collapsible_container"
release="1.4.2"
version="1.4.2"
release="1.4.3"
version="1.4.3"
copyright="since 2024 by evoWeb"
/>
<inventory id="t3tsref" url="https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/"/>
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'author_email' => '[email protected]',
'author_company' => 'evoWeb',
'state' => 'stable',
'version' => '1.4.2',
'version' => '1.4.3',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-13.4.99',
Expand Down

0 comments on commit c07a54a

Please sign in to comment.