i have set up a action_text with my project, i get no errors but nothing is showing up in my front-end code
<%= form_for [current_user, @project, @todolist], html: {class: "w-full"} do |f| %>
<%= hidden_field_tag :parent_id, current_user.id %>
<%= hidden_field_tag :project_id, @project.id %>
<%= f.text_field :name, class: "text--darker font-medium w-full border-b border-transparent placeholder-gray-600 pb-1 focus:outline-none focus:border-gray-500 my-2" , placeholder: "Type the name here"%>
<section class="hidden" data-todos-target="description">
<%= f.rich_text_area :description, class: "w-full my-2" %>
</section>
/////
this is the UI
and i get this error in the console
Note: i am using the new turbo hotwire installation with it, previously with turbolinks it worked fine, could that be the issue ? thanks in advance
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…