summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-07-03 09:36:08 +0200
committerByron Jones <glob@mozilla.com>2015-07-03 09:36:08 +0200
commit476af6ff95204205fe59a14e020e9c2d8a8e7800 (patch)
treea4c044d2c040d5bac71a4c27d5adb33a8baa3390 /extensions/BugModal
parent09b4735659156961621663ed65b9175e69a7f3f2 (diff)
downloadbugzilla-476af6ff95204205fe59a14e020e9c2d8a8e7800.tar.gz
bugzilla-476af6ff95204205fe59a14e020e9c2d8a8e7800.tar.xz
Bug 1178231: When the tracking section is collapsed, keywords are displayed like they are in the whiteboard
Diffstat (limited to 'extensions/BugModal')
-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 9563a929c..7a61057f8 100644
--- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl
+++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl
@@ -627,7 +627,7 @@
END;
IF bug.keyword_objects.size;
IF bug.keyword_objects.size <= 3;
- sub.push("[" _ bug.keyword_objects.pluck("name").join("][") _ "]");
+ sub.push("{" _ bug.keyword_objects.pluck("name").join(", ") _ "}");
ELSE;
sub.push(bug.keyword_objects.size _ " keywords");
END;