From 756fc7b2b731624f18d76fc7b4d1c833aedaa1a1 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 3 Aug 2020 18:01:10 +0300 Subject: [PATCH] fix: Adding new workspace have default `My Workspace` name, instead of `Name` placeholder Signed-off-by: Roman --- src/renderer/components/+workspaces/workspaces.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/+workspaces/workspaces.tsx b/src/renderer/components/+workspaces/workspaces.tsx index 5e6b8cf72b..96007a95fa 100644 --- a/src/renderer/components/+workspaces/workspaces.tsx +++ b/src/renderer/components/+workspaces/workspaces.tsx @@ -51,7 +51,7 @@ export class Workspaces extends React.Component { const workspaceId = uuid(); this.editingWorkspaces.set(workspaceId, { id: workspaceId, - name: _i18n._(t`My Workspace`), + name: "", description: "", }) }