aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/components
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-09-01 09:29:49 +0530
committerLibravatar GitHub <noreply@github.com>2021-09-01 09:29:49 +0530
commitd0bad11661cb93756891e7fafe729b7f4e415fb1 (patch)
tree80faf451477cd9ae216ff5a8f92958c4ab23065a /src/features/workspaces/components
parentbuild(deps): bump tar from 4.4.15 to 4.4.18 (#1852) (diff)
downloadferdium-app-d0bad11661cb93756891e7fafe729b7f4e415fb1.tar.gz
ferdium-app-d0bad11661cb93756891e7fafe729b7f4e415fb1.tar.zst
ferdium-app-d0bad11661cb93756891e7fafe729b7f4e415fb1.zip
Fix issue with workspace feature - fixes #1682 (#1854)
* fix issue with workspace feature not being turned on, and then randomly turning on somehow. * when deleting the active workspace, auto-select the default workspace. * consolidated the toggling of features into a single place in the config file. Co-authored-by: Sadetdin EYILI <sadetdin.eyili@ekino.com> Signed-off-by: Vijay A <avijayr@protonmail.com>
Diffstat (limited to 'src/features/workspaces/components')
-rw-r--r--src/features/workspaces/components/EditWorkspaceForm.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/features/workspaces/components/EditWorkspaceForm.js b/src/features/workspaces/components/EditWorkspaceForm.js
index 0ff836cba..c97d4bd9c 100644
--- a/src/features/workspaces/components/EditWorkspaceForm.js
+++ b/src/features/workspaces/components/EditWorkspaceForm.js
@@ -224,6 +224,7 @@ class EditWorkspaceForm extends Component {
224 busy={isSaving} 224 busy={isSaving}
225 buttonType={isSaving ? 'secondary' : 'primary'} 225 buttonType={isSaving ? 'secondary' : 'primary'}
226 onClick={this.save.bind(this, form)} 226 onClick={this.save.bind(this, form)}
227 // TODO: Need to disable if no services have been added to this workspace
227 disabled={isSaving} 228 disabled={isSaving}
228 /> 229 />
229 </div> 230 </div>