From e2fdc8e9882d81f2212959e946ab277170dad9a3 Mon Sep 17 00:00:00 2001 From: Frank Bergkemper Date: Mon, 7 Nov 2022 12:28:11 +0100 Subject: [PATCH] webui: fix pool link in job details formatter Adds missing query parameter. Fixes #1489: broken storage pool link --- webui/module/Job/view/job/job/details.phtml | 2 +- webui/module/Job/view/job/job/index.phtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webui/module/Job/view/job/job/details.phtml b/webui/module/Job/view/job/job/details.phtml index 760feab5125..c7698c09ccd 100644 --- a/webui/module/Job/view/job/job/details.phtml +++ b/webui/module/Job/view/job/job/details.phtml @@ -155,7 +155,7 @@ $this->headTitle($title); html.push(''); html.push(''); html.push('translate("Pool")); ?>'); - html.push('' + row.poolname + ''); + html.push('' + row.poolname + ''); html.push(''); html.push(''); html.push('translate("Scheduled")); ?>'); diff --git a/webui/module/Job/view/job/job/index.phtml b/webui/module/Job/view/job/job/index.phtml index 56a2e83e6c3..89b49f20c73 100644 --- a/webui/module/Job/view/job/job/index.phtml +++ b/webui/module/Job/view/job/job/index.phtml @@ -310,7 +310,7 @@ $this->headTitle($title); html.push(''); html.push(''); html.push('translate("Pool")); ?>'); - html.push('' + row.poolname + ''); + html.push('' + row.poolname + ''); html.push(''); html.push(''); html.push('translate("Scheduled")); ?>');