From d205666175aadc46b34e58fb29bcc2b83960ec71 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Tue, 9 Jun 2026 11:55:41 +1000 Subject: [PATCH] feat: add RawSheetLocation to DashboardTile for unmatched NTT locations --- Models/DashboardViewModel.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Models/DashboardViewModel.cs b/Models/DashboardViewModel.cs index 3620a4f..5d992f7 100644 --- a/Models/DashboardViewModel.cs +++ b/Models/DashboardViewModel.cs @@ -49,6 +49,12 @@ namespace Disco.Plugins.ServiceTracker.Models public string LocationName { get; set; } public string LocationIcon { get; set; } public string LocationColor { get; set; } + /// + /// For NTT sheet jobs: the raw location text from the sheet when it could not be matched + /// to a configured Disco location. Null if the location was matched or if this is a Disco job. + /// Displayed on the tile as a plain location pill alongside the fallback location badge. + /// + public string RawSheetLocation { get; set; } public string AssignedTechId { get; set; } public string AssignedTechName { get; set; } public DateTime? EstimatedCompletion { get; set; }