summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2025-07-20 02:06:12 +0000
committerGo MAEDA <maeda@farend.jp>2025-07-20 02:06:12 +0000
commite76fb425c5bee29a3bd3cfd676f977864d6ffa90 (patch)
tree849787e874506cb168f106cf351ffdf14f2bcbdd
parentd6ff93494354e90ecb3fb9ba3db76e21e63fdca4 (diff)
downloadredmine-e76fb425c5bee29a3bd3cfd676f977864d6ffa90.tar.gz
redmine-e76fb425c5bee29a3bd3cfd676f977864d6ffa90.zip
Fix the "for" attribute of the labels in partial imports/issues_relations_mapping (#42957).
Patch by Thomas Löber (user:tloeber). git-svn-id: https://svn.redmine.org/redmine/trunk@23895 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/imports/_issues_relations_mapping.html.erb20
1 files changed, 10 insertions, 10 deletions
diff --git a/app/views/imports/_issues_relations_mapping.html.erb b/app/views/imports/_issues_relations_mapping.html.erb
index fa0b0950f..9a88c6ebc 100644
--- a/app/views/imports/_issues_relations_mapping.html.erb
+++ b/app/views/imports/_issues_relations_mapping.html.erb
@@ -5,27 +5,27 @@
<%= mapping_select_tag @import, 'unique_id' %>
</p>
<p>
- <label for="import_settings_mapping_parent_issue_id"><%= l(:field_parent_issue) %></label>
+ <label for="import_mapping_parent_issue_id"><%= l(:field_parent_issue) %></label>
<%= mapping_select_tag @import, 'parent_issue_id' %>
</p>
<p>
- <label for="import_settings_mapping_relation_duplicates"><%= l(:label_duplicates) %></label>
+ <label for="import_mapping_relation_duplicates"><%= l(:label_duplicates) %></label>
<%= mapping_select_tag @import, 'relation_duplicates' %>
</p>
<p>
- <label for="import_settings_mapping_relation_duplicated"><%= l(:label_duplicated_by) %></label>
+ <label for="import_mapping_relation_duplicated"><%= l(:label_duplicated_by) %></label>
<%= mapping_select_tag @import, 'relation_duplicated' %>
</p>
<p>
- <label for="import_settings_mapping_relation_blocks"><%= l(:label_blocks) %></label>
+ <label for="import_mapping_relation_blocks"><%= l(:label_blocks) %></label>
<%= mapping_select_tag @import, 'relation_blocks' %>
</p>
<p>
- <label for="import_settings_mapping_relation_blocked"><%= l(:label_blocked_by) %></label>
+ <label for="import_mapping_relation_blocked"><%= l(:label_blocked_by) %></label>
<%= mapping_select_tag @import, 'relation_blocked' %>
</p>
</div>
@@ -33,27 +33,27 @@
<div class="splitcontentright">
<p></p>
<p>
- <label for="import_settings_mapping_relation_relates"><%= l(:label_relates_to) %></label>
+ <label for="import_mapping_relation_relates"><%= l(:label_relates_to) %></label>
<%= mapping_select_tag @import, 'relation_relates' %>
</p>
<p>
- <label for="import_settings_mapping_relation_precedes"><%= l(:label_precedes) %></label>
+ <label for="import_mapping_relation_precedes"><%= l(:label_precedes) %></label>
<%= mapping_select_tag @import, 'relation_precedes' %>
</p>
<p>
- <label for="import_settings_mapping_relation_follows"><%= l(:label_follows) %></label>
+ <label for="import_mapping_relation_follows"><%= l(:label_follows) %></label>
<%= mapping_select_tag @import, 'relation_follows' %>
</p>
<p>
- <label for="import_settings_mapping_relation_copied_to"><%= l(:label_copied_to) %></label>
+ <label for="import_mapping_relation_copied_to"><%= l(:label_copied_to) %></label>
<%= mapping_select_tag @import, 'relation_copied_to' %>
</p>
<p>
- <label for="import_settings_mapping_relation_copied_from"><%= l(:label_copied_from) %></label>
+ <label for="import_mapping_relation_copied_from"><%= l(:label_copied_from) %></label>
<%= mapping_select_tag @import, 'relation_copied_from' %>
</p>
</div>