Remove useless empty spaces (#28079).

Patch by Marius BALTEANU.


git-svn-id: http://svn.redmine.org/redmine/trunk@17209 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2018-02-23 08:20:35 +00:00
parent c41b2833c0
commit 27a1d65a50
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
</div>
</fieldset>
<fieldset class="box">
<legend><%= toggle_checkboxes_link('.roles-selection input') %> <%= l(:label_role_plural) %></legend>
<legend><%= toggle_checkboxes_link('.roles-selection input') %><%= l(:label_role_plural) %></legend>
<div class="roles-selection">
<% User.current.managed_roles(@project).each do |role| %>
<label><%= check_box_tag 'membership[role_ids][]', role.id, false, :id => nil %> <%= role %></label>

View File

@@ -1,5 +1,5 @@
<fieldset class="box">
<legend><%= toggle_checkboxes_link('.projects-selection input:enabled') %> <%= l(:label_project_plural) %></legend>
<legend><%= toggle_checkboxes_link('.projects-selection input:enabled') %><%= l(:label_project_plural) %></legend>
<div class="objects-selection">
<div class="projects-selection">
<%= render_project_nested_lists(@projects) do |p| %>