From: xangelo Date: Sun, 19 Jan 2025 04:20:30 +0000 (-0500) Subject: fix: remove the grid size from being displayed on the inventory page X-Git-Tag: v0.4.5~9 X-Git-Url: https://git.xangelo.ca/?a=commitdiff_plain;h=52e18058b60c5718dc4dcc05b9f6027ff7767cef;p=risinglegends.git fix: remove the grid size from being displayed on the inventory page --- diff --git a/src/server/views/inventory.ts b/src/server/views/inventory.ts index 41857e5..bf5d1c9 100644 --- a/src/server/views/inventory.ts +++ b/src/server/views/inventory.ts @@ -9,7 +9,7 @@ import { getDurabilityApproximation, expToLevel, levelFromExp } from "@shared/in import { slugify } from "@shared/utils"; function icon(icon_name?: string): string { - const placeholder = 'https://placehold.co/64x64/af936c/6d5f4d'; + const placeholder = 'https://placehold.co/64x64/af936c/af936c'; const icon = icon_name ? `/assets/img/icons/equipment/${icon_name}` : placeholder; return icon;