diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-05-10 16:59:39 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-05-10 16:59:39 +0200 |
commit | dfb467e63a340d8106a312013fb8140ce025cb21 (patch) | |
tree | 7aa330077af5a4544c34275698aa08f5507aa9fa /template | |
parent | cd478d226e183efc30939fb13f797bd012117405 (diff) | |
download | bugzilla-dfb467e63a340d8106a312013fb8140ce025cb21.tar.gz bugzilla-dfb467e63a340d8106a312013fb8140ce025cb21.tar.xz |
Bug 850135 - hide the textarea custom fields by default with an (edit) link
- Removal of div around pre as suggested by reviewer
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/field.html.tmpl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/template/en/default/bug/field.html.tmpl b/template/en/default/bug/field.html.tmpl index c086a04f7..0ef19c1c4 100644 --- a/template/en/default/bug/field.html.tmpl +++ b/template/en/default/bug/field.html.tmpl @@ -147,9 +147,7 @@ (<a href="#" id="[% field.name FILTER html %]_edit_action">edit</a>) </div> [% IF value %] - <div class="field_textarea_readonly"> - <pre>[% value FILTER html %]</pre> - </div> + <pre class="field_textarea_readonly">[% value FILTER html %]</pre> [% END %] </div> <div id="[% field.name FILTER html %]_input"> |