FIX: Update image slider module functionality to PrestaShop 9

This commit is contained in:
2025-11-19 14:50:14 +01:00
parent 6441fa4901
commit 34452ef6a3
3 changed files with 6 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
use Symfony\Component\Form\Extension\Core\Type\FileType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
use Symfony\Component\Translation\TranslatorInterface;
use Symfony\Component\Validator\Constraints\File;
use Symfony\Component\Validator\Constraints\NotBlank;

View File

@@ -58,7 +58,7 @@ final class ImageSliderQueryBuilder extends AbstractDoctrineQueryBuilder
$searchCriteria->getOrderWay()
)
->setFirstResult($searchCriteria->getOffset() ?? 0)
->setMaxResults($searchCriteria->getLimit());
->setMaxResults($searchCriteria->getLimit() ?? 10);
$qb->orderBy('position');