From a315ca2982dd9385784bff6e4bdaf15f2cd4e438 Mon Sep 17 00:00:00 2001 From: Mostafa Ahangarha Date: Tue, 10 Oct 2023 21:15:19 +0330 Subject: [PATCH] Use pointer cursor for destroy btn --- app/views/comments/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/comments/index.html.erb b/app/views/comments/index.html.erb index fcea683a..a5176d34 100644 --- a/app/views/comments/index.html.erb +++ b/app/views/comments/index.html.erb @@ -26,7 +26,7 @@ <%= link_to 'Show', comment %> <%= link_to 'Edit', edit_comment_path(comment) %> - <%= button_to 'Destroy', comment, method: :delete, data: { turbo_confirm: 'Are you sure?' }, class: "text-red-500" %> + <%= button_to 'Destroy', comment, method: :delete, data: { turbo_confirm: 'Are you sure?' }, class: "text-red-500 cursor-pointer" %> <% end %>