aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/containers
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-16 12:46:13 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-16 12:46:13 +0200
commitbf676f8597e5539c047f42a5716022681e3419c3 (patch)
treec5795bbc48951fdf643838eaa8f3294dff13dba4 /src/features/workspaces/containers
parentAdd information about NodeJS version in dev (diff)
downloadferdium-app-bf676f8597e5539c047f42a5716022681e3419c3.tar.gz
ferdium-app-bf676f8597e5539c047f42a5716022681e3419c3.tar.zst
ferdium-app-bf676f8597e5539c047f42a5716022681e3419c3.zip
Implement #37
Diffstat (limited to 'src/features/workspaces/containers')
-rw-r--r--src/features/workspaces/containers/EditWorkspaceScreen.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/features/workspaces/containers/EditWorkspaceScreen.js b/src/features/workspaces/containers/EditWorkspaceScreen.js
index 248b40131..7eaabc1ea 100644
--- a/src/features/workspaces/containers/EditWorkspaceScreen.js
+++ b/src/features/workspaces/containers/EditWorkspaceScreen.js
@@ -33,7 +33,9 @@ class EditWorkspaceScreen extends Component {
33 const { workspaceBeingEdited } = workspaceStore; 33 const { workspaceBeingEdited } = workspaceStore;
34 const { actions } = this.props; 34 const { actions } = this.props;
35 const workspace = new Workspace( 35 const workspace = new Workspace(
36 Object.assign({}, workspaceBeingEdited, values), 36 Object.assign({
37 saving: true,
38 }, workspaceBeingEdited, values),
37 ); 39 );
38 actions.workspaces.update({ workspace }); 40 actions.workspaces.update({ workspace });
39 }; 41 };