diff --git a/web-client/src/components/SrAnalysisMap.vue b/web-client/src/components/SrAnalysisMap.vue
index 620a8822..30129554 100644
--- a/web-client/src/components/SrAnalysisMap.vue
+++ b/web-client/src/components/SrAnalysisMap.vue
@@ -1020,7 +1020,7 @@ function handleSaveTooltip() {
size="small"
/>
diff --git a/web-client/src/components/SrPlotConfig.vue b/web-client/src/components/SrPlotConfig.vue
index 4b690e0d..ac909eff 100644
--- a/web-client/src/components/SrPlotConfig.vue
+++ b/web-client/src/components/SrPlotConfig.vue
@@ -149,7 +149,7 @@ async function enableLocationFinder(): Promise {
reason: 'they exist as separate columns in file'
})
chartStore.setYDataOptions(reqIdStr, [...currentYData, ...newFields])
- await refreshScatterPlot('enabled Link to Elevation Plot')
+ await refreshScatterPlot('enabled Link to Plot')
} else if ([latField, lonField].some((field) => !availableColumns.includes(field))) {
logger.debug('enableLocationFinder: Skipping lat/lon', {
reason: "they don't exist as separate columns (likely geoparquet with geometry column)"
@@ -159,7 +159,7 @@ async function enableLocationFinder(): Promise {
if (await requestsStore.needAdvice()) {
toast.add({
severity: 'info',
- summary: 'Link to Elevation Plot',
+ summary: 'Link to Plot',
detail: 'Click on a plot point to see where on the map it is.',
life: 3000
})
diff --git a/web-client/src/components/SrRecTree.vue b/web-client/src/components/SrRecTree.vue
index 15ef108f..03d0888c 100644
--- a/web-client/src/components/SrRecTree.vue
+++ b/web-client/src/components/SrRecTree.vue
@@ -112,8 +112,11 @@ function openCombinedParmsDialog(reqParms: any, rcvdParms: any) {
hasRcvdParms.value = hasRcvdContent
if (hasReqParms.value) {
+ // Extract inner data (remove 'parms' wrapper if present) for consistency with Request View
+ const innerReqParms =
+ reqParms?.parms && typeof reqParms.parms === 'object' ? reqParms.parms : reqParms
currentReqParms.value =
- typeof reqParms === 'object' ? JSON.stringify(reqParms, null, 2) : reqParms
+ typeof innerReqParms === 'object' ? JSON.stringify(innerReqParms, null, 2) : innerReqParms
}
if (hasRcvdParms.value) {