From 0dc27d02ae0824839dceb6f3a7dce994715fd500 Mon Sep 17 00:00:00 2001 From: natalie beatty Date: Wed, 18 Feb 2026 14:21:21 -0500 Subject: [PATCH 1/2] replace 'Location' in parent table column of additional fields with 'Substation' --- .../TSX/SystemCenter/AdditionalFields/ByAdditionalField.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AdditionalFields/ByAdditionalField.tsx b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AdditionalFields/ByAdditionalField.tsx index b0dffaacf..d15a410f8 100644 --- a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AdditionalFields/ByAdditionalField.tsx +++ b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AdditionalFields/ByAdditionalField.tsx @@ -191,7 +191,7 @@ const ByAdditionalField: Application.Types.iByComponent = (props) => { Field={'ParentTable'} HeaderStyle={{ width: 'auto' }} RowStyle={{ width: 'auto' }} - Content={({ item }) => item.ParentTable != '' ? item.ParentTable : 'No Associated Table' } + Content={({ item }) => item.ParentTable != '' ? (item.ParentTable === 'Location' ? 'Substation' : item.ParentTable) : 'No Associated Table' } > Parent Type From 416fb60267d402da6feaef4837dcf0849b9d5dce Mon Sep 17 00:00:00 2001 From: natalie beatty Date: Wed, 18 Feb 2026 14:28:25 -0500 Subject: [PATCH 2/2] replace 'Location' in ParentType of ExternalDBTableFields with 'Substation' --- .../TSX/SystemCenter/ExternalDB/ExternalDBTableFields.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/ExternalDB/ExternalDBTableFields.tsx b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/ExternalDB/ExternalDBTableFields.tsx index 6f193240c..e707ad1a1 100644 --- a/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/ExternalDB/ExternalDBTableFields.tsx +++ b/Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/ExternalDB/ExternalDBTableFields.tsx @@ -187,6 +187,7 @@ export default function ExternalDBTableFields(props: { TableName: string, ID: nu Field={'ParentTable'} HeaderStyle={{ width: 'auto' }} RowStyle={{ width: 'auto' }} + Content={({ item }) => item.ParentTable != '' ? (item.ParentTable === 'Location' ? 'Substation' : item.ParentTable) : 'No Associated Table'} > ParentType