Skip to content

Commit

Permalink
Jkmarx/file browser default open description (#2930)
Browse files Browse the repository at this point in the history
* Default to an open description.

* Fix unit test and stying.

* Remove unneccessary padding.
  • Loading branch information
jkmarx committed Aug 3, 2018
1 parent 4186c12 commit e4eddd0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

it('Data & UI displays variables should exist for views', function () {
expect(ctrl.tool).toEqual({});
expect(ctrl.isToolInfoCollapsed).toEqual(true);
expect(ctrl.isToolInfoCollapsed).toEqual(false);
});
});
})();
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
function toolSelectService ($window, toolDefinitionsService) {
var selectedTool = {};
var toolList = [];
var isToolInfoCollapsed = true;
var isToolInfoCollapsed = false;
var isToolPanelCollapsed = true;
var dataSetUuid = $window.dataSetUuid;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
expect(service).toBeDefined();
expect(service.selectedTool).toEqual({});
expect(service.toolList).toEqual([]);
expect(service.isToolInfoCollapsed).toEqual(true);
expect(service.isToolInfoCollapsed).toEqual(false);
expect(service.isToolPanelCollapsed).toEqual(true);
});

Expand Down
1 change: 0 additions & 1 deletion refinery/ui/source/styles/file-browser.less
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@
.panel-body {
border-top: none;
padding-top: 0;
padding-bottom: 0;
}

#control-panel-list {
Expand Down

0 comments on commit e4eddd0

Please sign in to comment.