From b5c4bb1006cf7ac2978559e25f05e147033ca304 Mon Sep 17 00:00:00 2001 From: Toks Date: Sat, 4 May 2013 10:47:07 -0400 Subject: [PATCH] fixes #1530 --- app/helpers/artists_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/artists_helper.rb b/app/helpers/artists_helper.rb index 09393b25f..861b9280d 100644 --- a/app/helpers/artists_helper.rb +++ b/app/helpers/artists_helper.rb @@ -5,7 +5,7 @@ module ArtistsHelper if artist link_to(artist.name, artist_path(artist)) else - link_to(name, new_artist_path(:name => name)) + " " + content_tag("span", "*", :class => "new-artist") + link_to(name, new_artist_path(:name => name)) + " " + content_tag("span", "*", :class => "new-artist", :title => "No artist with this name currently exists.") end end