From cb5c4a50c5b2b43efaacba83a297fd32964bb800 Mon Sep 17 00:00:00 2001 From: Toks Date: Thu, 11 Jul 2013 20:47:46 -0400 Subject: [PATCH] Decrease size of pool name input --- app/views/pools/edit.html.erb | 2 +- app/views/pools/new.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/pools/edit.html.erb b/app/views/pools/edit.html.erb index 26bfb5953..2f3d621c1 100644 --- a/app/views/pools/edit.html.erb +++ b/app/views/pools/edit.html.erb @@ -2,7 +2,7 @@
<%= simple_form_for(@pool) do |f| %>

Edit Pool: <%= @pool.pretty_name %>

- <%= f.input :name, :input_html => { :value => @pool.pretty_name } %> + <%= f.input :name, :as => :string, :input_html => { :value => @pool.pretty_name } %> <%= f.input :description %> <%= f.input :post_ids, :label => "Posts" %> <%= f.input :category, :collection => ["series", "collection"], :include_blank => false %> diff --git a/app/views/pools/new.html.erb b/app/views/pools/new.html.erb index f01d1ef2d..2a52fe416 100644 --- a/app/views/pools/new.html.erb +++ b/app/views/pools/new.html.erb @@ -2,7 +2,7 @@
<%= simple_form_for(@pool) do |f| %>

New Pool

- <%= f.input :name %> + <%= f.input :name, :as => :string %> <%= f.input :description %> <%= f.input :post_ids, :label => "Posts" %> <%= f.input :category, :collection => ["series", "collection"], :include_blank => false %>