- {!catalog ?
{t("common.loading")}
: entries.map((entry) => (
+ {!catalog ?
{t("common.loading")}
: entries.length === 0 ?
{t("tableDetail.noAvailableItems")}
: entries.map((entry) => (
{entry.name}
-
{euros(Math.round(entry.price * 100))}
+
{entry.categoryName} · {euros(Math.round(entry.price * 100))}
- {cart[entry.id] ?? 0}
-
+ {cart[entry.id] ?? 0}
+
))}
@@ -325,7 +344,7 @@ function AdminAddOrderModal({ t, onClose, onSubmit }: { t: T; onClose: () => voi