修复品牌排序问题

This commit is contained in:
Edward Yang 2023-01-05 15:24:34 +08:00
parent 3e28593746
commit 81a99fa32e
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class BrandRepo
foreach ($brands as $brand) {
$results[$brand->first][] = (new BrandDetail($brand))->jsonSerialize();
}
ksort($results);
return $results;
}