diff --git a/sources/application/UI/Base/Component/Alert/Alert.php b/sources/application/UI/Base/Component/Alert/Alert.php index d7947d7ce..e25985cda 100644 --- a/sources/application/UI/Base/Component/Alert/Alert.php +++ b/sources/application/UI/Base/Component/Alert/Alert.php @@ -228,6 +228,10 @@ class Alert extends UIContentBlock */ public function IsCollapsible(): bool { + if (empty($this->sTitle)) { + return false; + } + return $this->bIsCollapsible; }