Skip to content

Commit

Permalink
Merge pull request bagisto#10523 from amit-webkul/2.0
Browse files Browse the repository at this point in the history
🔨 [v2.2] : fix Issue bagisto#10519
  • Loading branch information
devansh-webkul authored Jan 31, 2025
2 parents fb2b202 + dbdc50f commit 150af5b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ public function run($parameters = [])
'title' => trans('installer::app.seeders.shop.theme-customizations.new-products.options.title', [], $locale),
'filters' => [
'new' => 1,
'sort' => 'asc',
'limit' => 10,
'sort' => 'name-asc',
'limit' => 12,
],
]),
], [
Expand All @@ -229,8 +229,8 @@ public function run($parameters = [])
'title' => trans('installer::app.seeders.shop.theme-customizations.featured-collections.options.title', [], $locale),
'filters' => [
'featured' => 1,
'sort' => 'desc',
'limit' => 10,
'sort' => 'name-desc',
'limit' => 12,
],
]),
], [
Expand All @@ -247,8 +247,8 @@ public function run($parameters = [])
'options' => json_encode([
'title' => trans('installer::app.seeders.shop.theme-customizations.all-products.options.title', [], $locale),
'filters' => [
'sort' => 'desc',
'limit' => 10,
'sort' => 'name-desc',
'limit' => 12,
],
]),
], [
Expand Down

0 comments on commit 150af5b

Please sign in to comment.