Skip to content

Commit

Permalink
Revert "Disable interactive workspace for stable release. Close #2031 (
Browse files Browse the repository at this point in the history
…#2032)" (#2033)

This reverts commit 9f921cc.
  • Loading branch information
brollb committed Jun 2, 2021
1 parent fc1af71 commit 6957ae7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/components.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"ExecutionView"
],
"visualizerOverrides": {
"": "PipelineIndex",
"": "InteractiveWorkspace",
"MyArtifacts": "ArtifactIndex",
"MyArchitectures": "ArchIndex",
"MyExecutions": "ExecutionIndex",
Expand Down
8 changes: 4 additions & 4 deletions src/visualizers/widgets/Sidebar/NavBar.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<nav class="side-nav fixed closed">
<!--<li class="side-nav-icon workspace-icon active">-->
<!--<span class="oi oi-beaker" title="Interactive Workspace" aria-hidden="true"></span>-->
<!--</li >-->
<li class="side-nav-icon pipelines-icon active">
<li class="side-nav-icon workspace-icon active">
<span class="oi oi-beaker" title="Interactive Workspace" aria-hidden="true"></span>
</li >
<li class="side-nav-icon pipelines-icon">
<span class="oi oi-fork" title="Pipelines" aria-hidden="true"></span>
</li >
<li class="side-nav-icon executions-icon">
Expand Down
4 changes: 2 additions & 2 deletions src/visualizers/widgets/Sidebar/SidebarWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ define([
var SidebarWidget,
WIDGET_CLASS = 'main-view',
CATEGORIES = [
//'workspace',
'workspace',
'pipelines',
'executions',
'resources',
Expand All @@ -32,7 +32,7 @@ define([
this.$el.addClass(WIDGET_CLASS);
this.initialize();
this.logger.debug('ctor finished');
this._currentSelection = '$pipelinesIcon';
this._currentSelection = '$workspaceIcon';
};

SidebarWidget.prototype.initialize = function () {
Expand Down

0 comments on commit 6957ae7

Please sign in to comment.