Defect #29912
Missing closing tag in app/views/roles/_form.html.erb
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Code cleanup/refactoring | |||
Target version: | 4.0.0 | |||
Resolution: | Fixed | Affected version: |
Description
Just find a missing html tag in roles/_form.html.erb
. A paragraph <p> is not closed.
diff --git a/app/views/roles/_form.html.erb b/app/views/roles/_form.html.erb index d87c6a16b..4a49d53de 100644 --- a/app/views/roles/_form.html.erb +++ b/app/views/roles/_form.html.erb @@ -36,6 +36,7 @@ </label> <% end %> <%= hidden_field_tag 'role[managed_role_ids][]', '' %> + </p> <% end %> <% if @role.new_record? && @roles.any? %>
Associated revisions
Add missing closing tag in app/views/roles/_form.html.erb (#29912).
Patch by Vincent Robert.
History
#1
Updated by Go MAEDA almost 4 years ago
- Tracker changed from Patch to Defect
- Subject changed from Add missing HTML closing tag to Missing closing tag in app/views/roles/_form.html.erb
- Assignee set to Go MAEDA
- Target version set to 4.0.0
- Resolution set to Fixed
Committed. Thank you for reporting the issue.
#2
Updated by Go MAEDA almost 4 years ago
- Status changed from New to Closed