From 4f73d044dad3e9468d1620147dc96843f4c13fad Mon Sep 17 00:00:00 2001 From: rdeiser Date: Tue, 25 Aug 2026 15:30:13 -0500 Subject: [PATCH] feat(problem-report-component): add enumeration to the qualtrics url --- .../nde-problem-report-custom.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/nde-problem-report-custom/nde-problem-report-custom.component.ts b/src/app/nde-problem-report-custom/nde-problem-report-custom.component.ts index 9e5a0873..c45ba1c2 100644 --- a/src/app/nde-problem-report-custom/nde-problem-report-custom.component.ts +++ b/src/app/nde-problem-report-custom/nde-problem-report-custom.component.ts @@ -49,6 +49,7 @@ export class NdeProblemReportCustom implements OnInit { const title = pnx?.addata?.atitle?.[0] || pnx?.addata?.btitle?.[0] || ''; const identifier = pnx?.addata?.isbn?.[0] || pnx?.addata?.issn?.[0] || pnx?.addata?.eissn?.[0] || pnx?.addata?.eisbn?.[0] || ''; const recordid = pnx?.control?.recordid?.[0] || ''; + const enumeration = 'volume ' + pnx?.addata?.volume?.[0] + ': issue ' + pnx?.addata?.issue?.[0]; const currentUrl = window.location.href; const params = new URLSearchParams({ @@ -58,6 +59,7 @@ export class NdeProblemReportCustom implements OnInit { title: title, identifier: identifier, recordid: recordid, + enumeration: enumeration, currentUrl: currentUrl, });