[ARVADOS] updated: 1431ecfb847926e6594f9b5f5ece635609721891
git at public.curoverse.com
git at public.curoverse.com
Wed Sep 17 11:39:04 EDT 2014
Summary of changes:
apps/workbench/app/views/pipeline_templates/_show_recent.html.erb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 1431ecfb847926e6594f9b5f5ece635609721891 (commit)
from 517d3fca54225873d36f94083f3b7056ce271f46 (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 1431ecfb847926e6594f9b5f5ece635609721891
Author: radhika <radhika at curoverse.com>
Date: Wed Sep 17 11:38:37 2014 -0400
no issue # : fix nil issue in pipeline_templates page
diff --git a/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb b/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb
index 65da910..252b93a 100644
--- a/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb
+++ b/apps/workbench/app/views/pipeline_templates/_show_recent.html.erb
@@ -35,7 +35,7 @@
action_method: 'post',
action_data: {selection_param: 'pipeline_instance[owner_uuid]',
'pipeline_instance[pipeline_template_uuid]' => ob.uuid,
- 'pipeline_instance[description]' => "Created at #{Time.now.localtime}" + (ob.name.andand.size>0 ? " using the pipeline template *#{ob.name}*" : ""),
+ 'pipeline_instance[description]' => "Created at #{Time.now.localtime}" + (ob.name.andand.size.andand>0 ? " using the pipeline template *#{ob.name}*" : ""),
'success' => 'redirect-to-created-object'
}.to_json),
{ class: "btn btn-default btn-xs", title: "Run #{ob.name}", remote: true, method: 'get' }
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list