[ARVADOS] updated: 5336eb79c94257d900f67491b901d38d33a54ce2
git at public.curoverse.com
git at public.curoverse.com
Thu Aug 28 13:58:28 EDT 2014
Summary of changes:
apps/workbench/app/views/application/_selection_checkbox.html.erb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 5336eb79c94257d900f67491b901d38d33a54ce2 (commit)
from 050a8d39b9ca831073520316dbc197270b11720d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 5336eb79c94257d900f67491b901d38d33a54ce2
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date: Thu Aug 28 13:58:24 2014 -0400
Fix nil dereference causing a fiddlesticks on the collections index page. no issue #
diff --git a/apps/workbench/app/views/application/_selection_checkbox.html.erb b/apps/workbench/app/views/application/_selection_checkbox.html.erb
index de880dd..a234e9f 100644
--- a/apps/workbench/app/views/application/_selection_checkbox.html.erb
+++ b/apps/workbench/app/views/application/_selection_checkbox.html.erb
@@ -1,5 +1,5 @@
<%if object and object.uuid and (object.class.goes_in_projects? or (object.is_a?(Link) and ArvadosBase::resource_class_for_uuid(object.head_uuid).to_s == 'Collection')) %>
- <% fn = if defined? friendly_name
+ <% fn = if defined? friendly_name and not friendly_name.nil?
friendly_name
else
link_to_if_arvados_object object, {no_link: true}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list