Actions
Idea #9804
closed[Workbench] Drop activity pane from collections view
Status:
Resolved
Priority:
Normal
Assigned To:
Category:
-
Target version:
Start date:
08/17/2016
Due date:
Story points:
0.5
Updated by Tom Morris over 8 years ago
- Project changed from 40 to Arvados
- Assigned To set to Lucas Di Pentima
Updated by Lucas Di Pentima over 8 years ago
3f23d6f
Removed the pane, a related query to the database on the controller, and the test checking it.
Updated by Lucas Di Pentima over 8 years ago
- Status changed from New to In Progress
Updated by Radhika Chippada over 8 years ago
- Subject changed from Drop activity pane from collections view to [Workbench] Drop activity pane from collections view
Updated by Radhika Chippada over 8 years ago
A few comments, mostly nitpicks
- In show.html.erb: Regarding the pane divisions: The collection#show page seems a bit dull with two equal width big boxes on top. It seems to look prettier if I used 7 and 5 for the “details” and “sharing” panels respectively. Please update if you agree. If you like it the way it is, no big deal.
--- a/apps/workbench/app/views/collections/show.html.erb +++ b/apps/workbench/app/views/collections/show.html.erb @@ -1,5 +1,5 @@ <div class="row row-fill-height"> - <div class="col-md-6"> + <div class="col-md-7"> <div class="panel panel-info"> <div class="panel-heading"> <h3 class="panel-title"> @@ -28,7 +28,7 @@ </div> </div> <% if current_user %> - <div class="col-md-6"> + <div class="col-md-5"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title"> @@ -68,7 +68,7 @@ </div> </div> <% else %> - <div class="col-md-6"> + <div class="col-md-5"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">
- Three tests in test/integration_performance/collections_perf_test.rb are failing for me. It may be because of my home network, but can you please double check. If they pass for you, all is good.
- In collections_controller.rb -> @is_persistent does not seem to be used anywhere anymore. Can you please remove this if no test failures? Thanks.
Updated by Lucas Di Pentima over 8 years ago
Radhika Chippada wrote:
- In show.html.erb: Regarding the pane divisions: The collection#show page seems a bit dull with two equal width big boxes on top. It seems to look prettier if I used 7 and 5 for the “details” and “sharing” panels respectively. Please update if you agree. If you like it the way it is, no big deal.
Updated! It makes more sense the way you said.
[...]
- Three tests in test/integration_performance/collections_perf_test.rb are failing for me. It may be because of my home network, but can you please double check. If they pass for you, all is good.
They didn't pass, I've fixed them now.
- In collections_controller.rb -> @is_persistent does not seem to be used anywhere anymore. Can you please remove this if no test failures? Thanks.
Removed and tested, all OK!
Commited at f6a485f
Thanks!
Updated by Lucas Di Pentima over 8 years ago
- Status changed from In Progress to Resolved
- % Done changed from 0 to 100
Applied in changeset arvados|commit:d18557927ac033c2e33c1f7770881367b252f329.
Actions