We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181a9a0 commit 38a5527Copy full SHA for 38a5527
packages/compass-workspaces/src/provider.tsx
@@ -249,7 +249,15 @@ export const WorkspacesServiceProvider: React.FunctionComponent<{
249
},
250
openDataModelingWorkspace: () => {
251
return void store.dispatch(
252
- openWorkspaceAction({ type: 'Data Modeling' })
+ openWorkspaceAction(
253
+ { type: 'Data Modeling' },
254
+ {
255
+ // Data Modeling tab is a special case, we always want to open it
256
+ // in a new tab to make it easier for users to create / open new
257
+ // diagrams
258
+ newTab: true,
259
+ }
260
+ )
261
);
262
263
openShellWorkspace(connectionId, options = {}) {
0 commit comments