diff --git a/src/QUI/Bricks/Brick.php b/src/QUI/Bricks/Brick.php
index 397f3f4ff3ad7597bcbf69db7ac02acdeeec2687..970254a82ef64bb194dad6cd1a81bb8507375e2d 100644
--- a/src/QUI/Bricks/Brick.php
+++ b/src/QUI/Bricks/Brick.php
@@ -275,11 +275,8 @@ public function create(): string
         $cacheName = Manager::getBrickCacheNamespace()
                      .\md5($this->getType())
                      .'/'
-                     .$this->hash;
-
-        if ($this->uniqueId) {
-            $cacheName .= '/'.$this->uniqueId;
-        }
+                     .$this->hash
+                     .'/'.\md5(\serialize($this->getAttributes()));
 
         if ($this->getAttribute('cacheable')) {
             try {