diff options
author | Byron Jones <glob@mozilla.com> | 2015-06-02 05:45:28 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-06-02 05:45:28 +0200 |
commit | ec536745f491f4454bf4d8cd715227bfa727d795 (patch) | |
tree | 2b4f449632858781b19caa7be4102879e74f2c53 | |
parent | 3cf3faf600249981e3903978b1501fffaabf7e0f (diff) | |
download | bugzilla-ec536745f491f4454bf4d8cd715227bfa727d795.tar.gz bugzilla-ec536745f491f4454bf4d8cd715227bfa727d795.tar.xz |
Bug 1170007: Collapse "Tracking" section when values are set to defaults (eg "---")
-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 095724e67..55780813f 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -600,7 +600,7 @@ [% col = - (bug.version.lower == "unspecified" || bug.version.lower == "other") + (bug.version.lower == "unspecified" || bug.version.lower == "other" || bug.version == "---") && bug.target_milestone == "---" && !has_bug_flags && !project_flags_set |