Actions
Defect #29912
closedMissing closing tag in app/views/roles/_form.html.erb
Start date:
Due date:
% Done:
0%
Estimated time:
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? %>
Files
Updated by Go MAEDA almost 7 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.
Actions