style(wishlist): Chip-Label "Beliebteste" → "Meist gewünscht"
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 1m17s
All checks were successful
Build & Publish Docker Image / build-and-push (push) Successful in 1m17s
"Beliebteste" ist mehrdeutig (Sterne? Favoriten? Wünsche?). Der Sort-Key popular sortiert nach wanted_by_count DESC, also der Anzahl Profile mit dem Rezept auf ihrer Wunschliste. Das Label macht das jetzt eindeutig. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
import type { WishlistEntry, SortKey } from '$lib/server/wishlist/repository';
|
import type { WishlistEntry, SortKey } from '$lib/server/wishlist/repository';
|
||||||
|
|
||||||
const SORT_OPTIONS: { value: SortKey; label: string }[] = [
|
const SORT_OPTIONS: { value: SortKey; label: string }[] = [
|
||||||
{ value: 'popular', label: 'Beliebteste' },
|
{ value: 'popular', label: 'Meist gewünscht' },
|
||||||
{ value: 'newest', label: 'Neueste' },
|
{ value: 'newest', label: 'Neueste' },
|
||||||
{ value: 'oldest', label: 'Älteste' }
|
{ value: 'oldest', label: 'Älteste' }
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user