Skip to content

Commit 6d9645e

Browse files
[Usability]: Family Details Search Inputs Position
On our Family Details page, our search inputs should be positioned in the same order as our table results below it to avoid confusion during searches. This commit positions 'Search by Guardian Name' on the left and 'Search by Child Name' on the right to match the table columns.
1 parent 384a229 commit 6d9645e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

app/views/partners/family_requests/new.html.erb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@
2525
<%= form_for_filterrific @filterrific do |f| %>
2626
<div class="row">
2727
<div class="col-3">
28-
<%= f.label :search_names, "Search By Child Name" %>
28+
<%= f.label :search_families, "Search By Guardian Name" %>
2929
<%= f.text_field(
30-
:search_names,
30+
:search_families,
3131
class: 'filterrific-periodically-observed form-control'
3232
) %>
3333
</div>
3434
<div class="col-3">
35-
<%= f.label :search_families, "Search By Guardian Name" %>
35+
<%= f.label :search_names, "Search By Child Name" %>
3636
<%= f.text_field(
37-
:search_families,
37+
:search_names,
3838
class: 'filterrific-periodically-observed form-control'
3939
) %>
4040
</div>

0 commit comments

Comments
 (0)