summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/template
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-03-03 22:13:43 +0100
committerDylan William Hardison <dylan@hardison.net>2017-03-03 22:13:53 +0100
commit0801b45a526ab1fe81fe9623131b7ebe6ec31bb0 (patch)
tree82883d5530f1cf1416e9760c977ef850100c6baf /extensions/BugModal/template
parent140cda81da78f1a95dc4159bdb2eae2a533b4fdf (diff)
downloadbugzilla-0801b45a526ab1fe81fe9623131b7ebe6ec31bb0.tar.gz
bugzilla-0801b45a526ab1fe81fe9623131b7ebe6ec31bb0.tar.xz
Bug 1343714 - When whiteboard is populated, prefix value of whiteboard with 'whiteboard:' in section header
Diffstat (limited to 'extensions/BugModal/template')
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl2
1 files changed, 1 insertions, 1 deletions
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, '&hellip;'));
+ sub.push("Whiteboard: " _ bug.status_whiteboard.truncate(256, '&hellip;'));
END;
IF bug.cf_crash_signature != "";
sub.push("crash signature");