Show 42 forward items in ring sidebar instead of 21

This commit is contained in:
russell@unturf.com 2026-02-09 11:54:20 -05:00
parent f780f0dab6
commit 433f4e25ce

View file

@ -697,7 +697,7 @@ def tokenize_and_stem(text):
return {stem_word(w) for w in words}
def get_ring_related_products(product, ring, forward=21, backward=3):
def get_ring_related_products(product, ring, forward=42, backward=3):
"""Get products from the ring: backward items, then forward items.
Returns a list of dicts: {"product": Product, "offset": int}