Closed enderahmetyurt closed 1 month ago
I see the problem :) The form is generating checkedbox
but here https://github.com/rails/tailwindcss-rails/blob/main/lib/generators/tailwindcss/scaffold/templates/_form.html.erb.tt#L31 it's check_box
I can fix it
Hey,
I created my projects running
rails new my-todo-app --main --css=tailwind
and I created a scaffold modelrails g scaffold Task title:string description:text completed:boolean due_date:datetime
it created a form but checkbox looks weird even this line https://github.com/rails/tailwindcss-rails/blob/main/lib/generators/tailwindcss/scaffold/templates/_form.html.erb.tt#L31it generated this code line in
_form.html.erb
I was expecting it wouldn't be cover all width, but it did.
What should I do?