diff options
author | David Lawrence <dkl@mozilla.com> | 2016-05-25 18:39:30 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-05-25 18:39:30 +0200 |
commit | 7b4ca46f30dbc9a5756e3b801a529bfc015c3b4b (patch) | |
tree | 7251652b5b2a3478f0a1885edea506bd75e10549 | |
parent | ae11e604e6535058ecbdf0a9216d4167e7d45676 (diff) | |
download | bugzilla-7b4ca46f30dbc9a5756e3b801a529bfc015c3b4b.tar.gz bugzilla-7b4ca46f30dbc9a5756e3b801a529bfc015c3b4b.tar.xz |
Bug 1272384 - inline user story changes should not be shown on bug-modal
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl index 9efd601e9..e15f8837b 100644 --- a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl @@ -295,7 +295,11 @@ ' → '; END; END; - PROCESS add_change value=change.added; + IF change.fieldname == 'cf_user_story'; + %](updated)[% + ELSE; + PROCESS add_change value=change.added; + END; END; '</div>'; |