mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 22:18:33 +00:00
Bugfix/workspace name case mismatch (#6560)
* fix: preserve workspace name casing in title bar (#6522) * fix: improve workspace display name handling in title bar --------- Co-authored-by: Uzairkazi695 <kaziuzair695@gmail.com>
This commit is contained in:
@@ -217,7 +217,7 @@ const readWorkspaceConfig = (workspacePath) => {
|
||||
|
||||
const generateYamlContent = (config) => {
|
||||
const yamlLines = [];
|
||||
const workspaceName = config.info?.name || config.name || 'Unnamed Workspace';
|
||||
const workspaceName = config.info?.name || config.name || 'Untitled Workspace';
|
||||
const workspaceType = config.info?.type || config.type || WORKSPACE_TYPE;
|
||||
|
||||
yamlLines.push(`opencollection: ${config.opencollection || OPENCOLLECTION_VERSION}`);
|
||||
|
||||
Reference in New Issue
Block a user