From 2cce1896e163cbf7c16617023ba619692816e438 Mon Sep 17 00:00:00 2001 From: Matheus Zych Date: Thu, 22 Jan 2026 07:41:20 +0100 Subject: [PATCH] Fixes error when trying to view ui in fullscreen mode in documentation --- components/ILIAS/UI/src/examples/Layout/Page/Standard/ui.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ILIAS/UI/src/examples/Layout/Page/Standard/ui.php b/components/ILIAS/UI/src/examples/Layout/Page/Standard/ui.php index 6c3b7eaeef21..fd7172c2915d 100755 --- a/components/ILIAS/UI/src/examples/Layout/Page/Standard/ui.php +++ b/components/ILIAS/UI/src/examples/Layout/Page/Standard/ui.php @@ -516,14 +516,14 @@ function getDemoEntryTools(\ILIAS\UI\Factory $f): array $slate = $f->maincontrols()->slate()->legacy( 'Initially hidden', $symbol, - $f->legacy(loremIpsum()) + $f->legacy()->content(loremIpsum()) ); $tools['tool3'] = $slate; $slate = $f->maincontrols()->slate()->legacy( 'Closable Tool', $symbol, - $f->legacy(loremIpsum()) + $f->legacy()->content(loremIpsum()) ); $tools['tool4'] = $slate;