From 5180d811a87920a5f5428200b0cd495e5ad74ed2 Mon Sep 17 00:00:00 2001 From: Shawn Date: Fri, 29 May 2026 00:25:10 -0400 Subject: [PATCH] fix: add place/building/floor fields to main detail view The detail view's Asset Details card was missing location fields (place, building_name, building_number, floor, room, trailer_number) that were visible in the list cards. Added them alongside Model so building/floor info appears in the main card rather than only in the collapsed Directions & Access section below. --- static/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/index.html b/static/index.html index 7342719..c247933 100644 --- a/static/index.html +++ b/static/index.html @@ -3761,6 +3761,14 @@ df('Model', a.model), df('Last Dex Report', a.dex_report_date || '— No report yet', true), + // Location fields (shown in card but missing from details) + df('Place', a.place), + df('Building', a.building_name), + df('Building #', a.building_number), + df('Floor', a.floor), + df('Room', a.room), + df('Trailer', a.trailer_number), + ].filter(Boolean).join(''); // Disney Park badge