Commit 2d0acc0d authored by yann300's avatar yann300

hide label

parent d34a5943
...@@ -280,7 +280,7 @@ module.exports = class Filepanel extends ViewPlugin { ...@@ -280,7 +280,7 @@ module.exports = class Filepanel extends ViewPlugin {
title='Create a new Workspace'> title='Create a new Workspace'>
</span> </span>
<span <span
hidden={this.currentWorkspace === this.LOCALHOST} hidden={this.currentWorkspace === this.LOCALHOST || this.currentWorkspace === this.NO_WORKSPACE}
id='workspaceRename' id='workspaceRename'
data-id='workspaceRename' data-id='workspaceRename'
onClick={(e) => { onClick={(e) => {
...@@ -291,7 +291,7 @@ module.exports = class Filepanel extends ViewPlugin { ...@@ -291,7 +291,7 @@ module.exports = class Filepanel extends ViewPlugin {
title='Rename current Workspace'> title='Rename current Workspace'>
</span> </span>
<span <span
hidden={this.currentWorkspace === this.LOCALHOST} hidden={this.currentWorkspace === this.LOCALHOST || this.currentWorkspace === this.NO_WORKSPACE}
id='workspaceDelete' id='workspaceDelete'
data-id='workspaceDelete' data-id='workspaceDelete'
onClick={(e) => { onClick={(e) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment