diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-03-03 22:13:43 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-03-03 22:13:53 +0100 |
commit | 0801b45a526ab1fe81fe9623131b7ebe6ec31bb0 (patch) | |
tree | 82883d5530f1cf1416e9760c977ef850100c6baf /extensions | |
parent | 140cda81da78f1a95dc4159bdb2eae2a533b4fdf (diff) | |
download | bugzilla-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')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 2 |
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, '…')); + sub.push("Whiteboard: " _ bug.status_whiteboard.truncate(256, '…')); END; IF bug.cf_crash_signature != ""; sub.push("crash signature"); |