From be7bc35e2ab58148812b4bb4256ef594e8fdd795 Mon Sep 17 00:00:00 2001 From: Paul Tannenbaum Date: Tue, 20 Dec 2011 19:56:53 -0800 Subject: [PATCH] only show notes if they exist --- app/views/events/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/events/show.html.erb b/app/views/events/show.html.erb index 649e577..4a8bbfa 100644 --- a/app/views/events/show.html.erb +++ b/app/views/events/show.html.erb @@ -28,7 +28,7 @@ <%= @event.carpool_seats %>

- <% if @event.notes %> + <% unless @event.notes.blank? %>

Additional Notes: <%= @event.notes %>