From 1545b1619dc9005bf3676d7b4b6e90881c449f21 Mon Sep 17 00:00:00 2001 From: Aidan Cornelius-Bell Date: Mon, 18 Nov 2024 17:14:25 +1030 Subject: [PATCH] Fixed a _BLANK ref in the wrong place --- app/views/pubview/post.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/pubview/post.html.erb b/app/views/pubview/post.html.erb index f71b8aa..9474e0c 100644 --- a/app/views/pubview/post.html.erb +++ b/app/views/pubview/post.html.erb @@ -14,8 +14,8 @@ <% else %>

Bookmark comment permalink:

<%= @post.title %>

- <%= link_to "View original content", @post.url, class: "button" %> - <%= link_to "More from mind reader", "#{root_path}?filter=bookmarks", class: "button", target: "_BLANK" %> + <%= link_to "View original content", @post.url, class: "button", target: "_BLANK" %> + <%= link_to "More from mind reader", "#{root_path}?filter=bookmarks", class: "button" %>

Originally bookmarked on mind reader on <%= @post.published_at.strftime('%B %d, %Y') %>.

-- 2.39.5