Skip to content

Commit

Permalink
Hound -> Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
justalever committed May 12, 2023
1 parent 17bc7e4 commit 3faf19f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
<%%= form.label :<%= attribute.column_name %>, class: "form-label" %>
<%%= form.<%= attribute.field_type %> :<%= attribute.column_name %> %>
<%- elsif attribute.field_type == :date_select -%>
<%%= form.label :<%= attribute.column_name %> %>
<%%= form.label :<%= attribute.column_name %>, class: "form-label" %>
<%%= form.text_field :<%= attribute.column_name %>, class: "form-input" %>
<%- elsif attribute.field_type == :datetime_select -%>
<%%= form.label :<%= attribute.column_name %> %>
<%%= form.label :<%= attribute.column_name %>, class: "form-label" %>
<%%= form.datetime_select :<%= attribute.column_name %>, class: "form-input-datetime-select" %>
<%- elsif attribute.field_type == :check_box -%>
<%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "form-input-checkbox" %>
<%%= form.label :<%= attribute.column_name %>, class: "ml-2" %>
<%- else -%>
<%%= form.label :<%= attribute.column_name %>, class: "label" %>
<%%= form.label :<%= attribute.column_name %>, class: "form-label" %>
<%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "form-input" %>
<%- end -%>
</div>
Expand Down

0 comments on commit 3faf19f

Please sign in to comment.