diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 8cce23658..c0f3c6103 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -19,7 +19,7 @@ def icon(name, opts = {}) title = opts.delete(:title) if title - direction = opts[:tooltip] || 'bottom' + direction = opts.delete(:tooltip) || 'bottom' content_tag(:div, class: classes + " tooltip tooltip-#{direction} hover:tooltip-open", data: { tip: title.to_s }) do heroicon name, **opts diff --git a/app/views/conversations/show.html.erb b/app/views/conversations/show.html.erb index 683e3a3f5..d7b4ca97e 100644 --- a/app/views/conversations/show.html.erb +++ b/app/views/conversations/show.html.erb @@ -53,8 +53,8 @@ -