diff --git a/src/QUI/Bricks/Brick.php b/src/QUI/Bricks/Brick.php index 8b06127d7a7e9534158da5ade5fef30bbcf715db..f1bf26be27bdb741257b1c50a4e7f051bdce6e4a 100644 --- a/src/QUI/Bricks/Brick.php +++ b/src/QUI/Bricks/Brick.php @@ -293,8 +293,10 @@ public function create() } } - return $data['html']; - } catch (QUI\Exception $Exception) { + if (!empty($data['html'])) { + return $data['html']; + } + } catch (\Exception $Exception) { } if ($this->getAttribute('type') == 'content') {