Skip to content

Commit

Permalink
Merge pull request #236 from lsa-mis/fix-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
britaumich authored Aug 2, 2024
2 parents b3c0416 + 6a7a87d commit 837c5a3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/controllers/reports_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def index
{title: "No Access", url: no_access_report_reports_path, description: "This report shows information on Rooms that were not able to be accessed" },
{title: "No Access During Last Checks", url: no_access_for_n_times_report_reports_path, description: "This report shows information on Rooms that were not able to be accessed during several last checks" },
{title: "Rooms not Checked during Last Days", url: not_checked_rooms_report_reports_path, description: "This report shows information on Rooms that were not checked during last days" },
{title: "Common Attribute States", url: common_attribute_states_report_reports_path, description: "This report shows the repsonses to the Common Questions in the Rover form" },
{title: "Specific Attribute States", url: specific_attribute_states_report_reports_path, description: "This report shows the repsonses to the Specific Questions in the Rover form" },
{title: "Resource States", url: resource_states_report_reports_path, description: "This report shows the repsonses to the Resource Questions in the Rover form" },
{title: "Common Attribute States", url: common_attribute_states_report_reports_path, description: "This report shows the responses to the Common Questions in the Rover form" },
{title: "Specific Attribute States", url: specific_attribute_states_report_reports_path, description: "This report shows the responses to the Specific Questions in the Rover form" },
{title: "Resource States", url: resource_states_report_reports_path, description: "This report shows the responses to the Resource Questions in the Rover form" },
]
end

Expand Down
2 changes: 1 addition & 1 deletion app/views/reports/common_attribute_states_report.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>Common Attribute States Report</h1>
<%= link_to 'Back to Reports', reports_path, class: "link_to" %>
</div>
<p>This report shows the repsonses to the Common Questions in the Rover form.</p>
<p>This report shows the responses to the Common Questions in the Rover form.</p>

<div class="py-3">
<%= render 'filter_form', report_url: common_attribute_states_report_reports_path %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/reports/resource_states_report.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>Resource States Report</h1>
<%= link_to 'Back to Reports', reports_path, class: "link_to" %>
</div>
<p>This report shows the repsonses to the Resource Questions in the Rover form.</p>
<p>This report shows the responses to the Resource Questions in the Rover form.</p>

<div class="py-3">
<%= render 'filter_form', report_url: resource_states_report_reports_path do |form| %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1>Specific Attribute States Report</h1>
<%= link_to 'Back to Reports', reports_path, class: "link_to" %>
</div>
<p>This report shows the repsonses to the Specific Questions in the Rover form.</p>
<p>This report shows the responses to the Specific Questions in the Rover form.</p>

<div class="py-3">
<%= render 'filter_form', report_url: specific_attribute_states_report_reports_path %>
Expand Down

0 comments on commit 837c5a3

Please sign in to comment.