fix: scroll behaviour

This commit is contained in:
2025-12-08 23:00:21 +03:00
parent 13f63e09fc
commit 359395b7e8
27 changed files with 122 additions and 14 deletions

View File

View File

@@ -41,7 +41,7 @@ class BlocksService
{
$blockType = $block['type'];
$cacheKey = "block_{$blockType}_" . md5(serialize($block['data']));
$cacheTtlSeconds = 60;
$cacheTtlSeconds = 3600;
$data = $this->cache->get($cacheKey);
if (! $data) {

View File

View File