Skip to content

Commit

Permalink
update placeholder text
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanTG committed Oct 2, 2024
1 parent 205b044 commit a01a215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/locations/_render_update_metadata.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
= select_tag "new_location_type_#{l.id}", options_for_select([['']]) + options_from_collection_for_select(LocationType.all, 'id', 'name', l.location_type_id)
.clear
= label_tag "Location Description: "
= text_area_tag "new_desc_#{l.id}", (l.description.to_s == '') ? '' : l.description, :cols => 20, :rows => 3, :class => 'edit_mode', :placeholder => 'Hours; what type of payment system(s) they use (door fee, cash, cards)'
= text_area_tag "new_desc_#{l.id}", (l.description.to_s == '') ? '' : l.description, :cols => 20, :rows => 3, :class => 'edit_mode', :placeholder => 'Hours; type of payment system(s) they use (door fee, cash, cards); accessibility issues'
.clear
= submit_tag 'Save', :class => "save_button", :id => "save_metadata_#{l.id}"
= submit_tag 'Cancel', :id => "metadata_cancel_#{l.id}", :class => "cancel_button"
Expand Down
2 changes: 1 addition & 1 deletion app/views/pages/suggest_new_location.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
.clear
%li.textbox
%label{:for => "location_comments"} Comments:
%textarea{:type => "text", :name => "location_comments", :params => "location_comments", :class => "text", :placeholder => 'Hours; what type of payment system(s) they use (door fee, cash, cards); opening date'}
%textarea{:type => "text", :name => "location_comments", :params => "location_comments", :class => "text", :placeholder => 'Hours; type of payment system(s) they use (door fee, cash, cards); accessibility issues; opening date'}
%li.machines_textinput
%label{:for => "location_type"} Machines:
= select_tag "location_machines", options_from_collection_for_select(Machine.all.sort_by(&:massaged_name), 'id', 'name_and_year', params["location_machines_ids"]), multiple: "multiple", :class => 'location_machines', :id => 'location_machines', name: "location_machines_ids[]", required: true
Expand Down

0 comments on commit a01a215

Please sign in to comment.