From 0801b45a526ab1fe81fe9623131b7ebe6ec31bb0 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Fri, 3 Mar 2017 16:13:43 -0500 Subject: Bug 1343714 - When whiteboard is populated, prefix value of whiteboard with 'whiteboard:' in section header --- extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/BugModal/template/en/default') 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"); -- cgit v1.2.3-24-g4f1b