diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-02-27 17:11:07 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-03-02 16:26:54 +0000 |
commit | 56e7fe278e84200324e2ec2a1be72c3bd998c5ff (patch) | |
tree | c369f3e82348b4bc255fb392491710382dddf5d5 | |
parent | 4886051f3517178c17e555c8610df8ce98c55ac8 (diff) |
Remove duplicate notes field.
-rw-r--r-- | app/views/public_body/show.html.erb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/views/public_body/show.html.erb b/app/views/public_body/show.html.erb index c46596c89..5c11c9428 100644 --- a/app/views/public_body/show.html.erb +++ b/app/views/public_body/show.html.erb @@ -55,9 +55,7 @@ <div class="action-bar__make-request"> <% if @public_body.is_requestable? || @public_body.not_requestable_reason == 'bad_contact' %> <%= link_to _("Make a request to this authority"), new_request_to_body_path(:url_name => @public_body.url_name), :class => "link_button_green" %> - <% elsif @public_body.has_notes? %> - <%= @public_body.notes_as_html.html_safe %> - <% end %> + <% end %> </div> <div class="action-bar__follow"> <% follower_count = TrackThing.count(:all, :conditions => ["public_body_id = ?", @public_body.id]) %> |