Browse Source

Change `Editors Note` to `Editor's Note`

pull/135/head
Alexander D. Bondoc 4 years ago
parent
commit
7aefbbb23f
No known key found for this signature in database
GPG Key ID: 2CCA40FDDA18E7F8
  1. 4
      app/components/annotation_form_component/annotation_form_component.html.erb
  2. 4
      app/components/annotation_marks_modal_form_component/annotation_marks_modal_form_component.html.erb
  3. 2
      app/components/doctrine_index_component/doctrine_index_component.html.erb
  4. 2
      app/components/document_doctrine_index_component/document_doctrine_index_component.html.erb
  5. 2
      app/components/document_doctrine_show_component/document_doctrine_show_component.html.erb
  6. 2
      app/components/reports_search_results_component/reports_search_results_component.html.erb
  7. 4
      app/views/shared/_annotation_form.html.erb
  8. 2
      app/views/shared/_annotations_index_view.html.erb
  9. 4
      app/views/shared/_doctrine_form_annotation_modal_form.html.erb
  10. 2
      app/views/shared/_doctrine_form_annotations_view.html.erb

4
app/components/annotation_form_component/annotation_form_component.html.erb

@ -45,7 +45,7 @@
<div class="row">
<div class="col-sm-12 p-2">
<strong> <%= label_tag :editor_notes %> </strong>
<%= rich_text_area_tag :editor_notes, annotation.editor_notes, placeholder: "Editor Notes", data: { target: "annotations.editor_notes" } %>
<strong> <%= label_tag "Editor's Note" %> </strong>
<%= rich_text_area_tag :editor_notes, annotation.editor_notes, placeholder: "Editor's Note", data: { target: "annotations.editor_notes" } %>
</div>
</div>

4
app/components/annotation_marks_modal_form_component/annotation_marks_modal_form_component.html.erb

@ -59,8 +59,8 @@
<div class="row">
<div class="col-sm-12 p-2">
<strong> <%= label_tag :editor_notes %> </strong>
<%= rich_text_area_tag :editor_notes, nil, placeholder: "Editor Notes", data: { target: "annotations.editor_notes" } %>
<strong> <%= label_tag "Editor's Note" %> </strong>
<%= rich_text_area_tag :editor_notes, nil, placeholder: "Editor's Note", data: { target: "annotations.editor_notes" } %>
</div>
</div>
</div>

2
app/components/doctrine_index_component/doctrine_index_component.html.erb

@ -36,7 +36,7 @@
<% if annotation.editor_notes.present? %>
<div class="row ms-5 mb-2">
<div class="col-sm-2 p-0" style="width: 105px;">
<span> Editors Note: </span>
<span> Editor's Note: </span>
</div>
<div class="col-sm-10 ps-0">

2
app/components/document_doctrine_index_component/document_doctrine_index_component.html.erb

@ -27,7 +27,7 @@
<% if annotation.editor_notes.present? %>
<div class="row ms-5 mb-2">
<div class="col-sm-2 p-0" style="width: 105px;">
<span> Editors Note: </span>
<span> Editor's Note: </span>
</div>
<div class="col-sm-10 ps-0">

2
app/components/document_doctrine_show_component/document_doctrine_show_component.html.erb

@ -111,7 +111,7 @@
<% if annotation.editor_notes.present? %>
<div class="row mb-2">
<div class="col-sm-1 ms-5 p-0" style="width: 105px;">
<span> Editors Note: </span>
<span> Editor's Note: </span>
</div>
<div class="col-sm-10 ps-0">

2
app/components/reports_search_results_component/reports_search_results_component.html.erb

@ -24,7 +24,7 @@
<% if annotation.editor_notes.present? %>
<div class="row ms-5">
<div class="col-sm-2 p-0" style="width: 105px;">
<span> Editors Note: </span>
<span> Editor's Note: </span>
</div>
<div class="col-sm-10 ps-0">

4
app/views/shared/_annotation_form.html.erb

@ -52,8 +52,8 @@
<div class="row">
<div class="col-sm-12 p-2">
<strong> <%= label_tag :editor_notes %> </strong>
<%= rich_text_area_tag :editor_notes, nil, placeholder: "Editor Notes" %>
<strong> <%= label_tag "Editor's Note" %> </strong>
<%= rich_text_area_tag :editor_notes, nil, placeholder: "Editor's Note" %>
</div>
</div>
</div>

2
app/views/shared/_annotations_index_view.html.erb

@ -30,7 +30,7 @@
<% if annotation.editor_notes.present? %>
<div class="row">
<div class="col-sm-1 ms-5 p-0" style="width: 105px;">
<span> Editors Note: </span>
<span> Editor's Note: </span>
</div>
<div class="col-sm-10 ps-0">

4
app/views/shared/_doctrine_form_annotation_modal_form.html.erb

@ -56,8 +56,8 @@
<div class="row">
<div class="col-sm-12 p-2">
<strong> <%= label_tag :editor_notes %> </strong>
<%= rich_text_area_tag :editor_notes, nil, placeholder: "Editor Notes" %>
<strong> <%= label_tag "Editor's Note" %> </strong>
<%= rich_text_area_tag :editor_notes, nil, placeholder: "Editor's Note" %>
</div>
</div>
</div>

2
app/views/shared/_doctrine_form_annotations_view.html.erb

@ -26,7 +26,7 @@
<% if annotation[:editor_notes].present? %>
<div class="row mb-2">
<div class="col-sm-1 ms-5 p-0" style="width: 105px;">
<span> Editors Note: </span>
<span> Editor's Note: </span>
</div>
<div class="col-sm-10 ps-0">

Loading…
Cancel
Save