From 0dd44e64a4b400ef69aee0d182d429d435801707 Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 27 Dec 2018 15:03:11 -0600 Subject: [PATCH] artists: add notice about separating other names with spaces (#4028). --- app/views/artists/_form.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/artists/_form.html.erb b/app/views/artists/_form.html.erb index 7ae80753f..931ac2d19 100644 --- a/app/views/artists/_form.html.erb +++ b/app/views/artists/_form.html.erb @@ -14,7 +14,7 @@

<%= @artist.name %>

<% end %> - <%= f.input :other_names_string, :hint => "Separate with spaces", :as => :text, :label => "Other names" %> + <%= f.input :other_names_string, label: "Other names", as: :text, hint: 'NEW Separate names with spaces, not commas. Use underscores for spaces inside names.'.html_safe %> <%= f.input :group_name %> <%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5", :value => params.dig(:artist, :url_string) || @artist.urls.join("\n")}, :hint => "You can prefix a URL with - to mark it as dead." %>