diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-07-04 01:48:52 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-07-07 00:19:20 +0200 |
commit | a6f98de0d4e842351222b0173a1fff151da8738e (patch) | |
tree | 6d7b2b7885a750826655cf3896d7fd72791623b3 /extensions/BugModal/template/en/default | |
parent | 3ae73efc60d570fc3f0e918be3889f0ae5a9f263 (diff) | |
download | bugzilla-a6f98de0d4e842351222b0173a1fff151da8738e.tar.gz bugzilla-a6f98de0d4e842351222b0173a1fff151da8738e.tar.xz |
Revert "Bug 1365345 - Modal Bug Entry Prototype"
This reverts commit 8835db60a8d637fe3aec82c718bad8a8177a6acf.
Diffstat (limited to 'extensions/BugModal/template/en/default')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/field.html.tmpl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl index c54f7c257..e84327307 100644 --- a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl @@ -28,7 +28,6 @@ # edit html instead of replacing it. forces edit_only (default: false); # default: (string) default value (eg. used as a placeholder in user fields) # help: (string) optional url that describes the field (requires a label to be defined and visible) - # required: (boolean) if the field is required. (At present, only implemented for FIELD_TYPE_FREETEXT) # action: (hash) show a button to the right of the edit field (user fields only currently). keys: # id: (string) optional button id # class: (string) optional button class @@ -219,7 +218,7 @@ END; [% CASE constants.FIELD_TYPE_FREETEXT %] [%# normal input field %] - <input name="[% name FILTER html %]" id="[% name FILTER html %]" value="[% value FILTER html %]" [% aria_labelledby_html FILTER none %] [% "required" IF required %]> + <input name="[% name FILTER html %]" id="[% name FILTER html %]" value="[% value FILTER html %]" [% aria_labelledby_html FILTER none %]> [% CASE constants.FIELD_TYPE_USER %] [% IF action && !action.hidden %] <button class="field-button minor [%= action.class FILTER html IF action.class %]" |