From: Dylan William Hardison Date: Fri, 3 Mar 2017 21:13:43 +0000 (-0500) Subject: Bug 1343714 - When whiteboard is populated, prefix value of whiteboard with 'whiteboa... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0801b45a526ab1fe81fe9623131b7ebe6ec31bb0;p=thirdparty%2Fbugzilla.git Bug 1343714 - When whiteboard is populated, prefix value of whiteboard with 'whiteboard:' in section header --- diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index af575d734..a5508a83c 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -1014,7 +1014,7 @@ [% sub = []; IF bug.status_whiteboard != ""; - sub.push(bug.status_whiteboard.truncate(256, '…')); + sub.push("Whiteboard: " _ bug.status_whiteboard.truncate(256, '…')); END; IF bug.cf_crash_signature != ""; sub.push("crash signature");