mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
fix(editor): Change default branchColor and remove label (#6541)
change default branchColor and remove label
This commit is contained in:
parent
e239730715
commit
186271e939
|
@ -66,7 +66,7 @@ describe('MainSidebarSourceControl', () => {
|
|||
authorEmail: '',
|
||||
repositoryUrl: '',
|
||||
branchReadOnly: false,
|
||||
branchColor: '#F4A6DC',
|
||||
branchColor: '#5296D6',
|
||||
connected: true,
|
||||
publicKey: '',
|
||||
});
|
||||
|
|
|
@ -1335,7 +1335,6 @@
|
|||
"settings.sourceControl.gitConfig": "Git configuration",
|
||||
"settings.sourceControl.repoUrl": "Git repository URL (SSH)",
|
||||
"settings.sourceControl.repoUrlPlaceholder": "e.g. git@github.com:my-team/my-repository",
|
||||
"settings.sourceControl.repoUrlDescription": "The SSH url of your Git repository",
|
||||
"settings.sourceControl.repoUrlInvalid": "The Git repository URL is not valid",
|
||||
"settings.sourceControl.authorName": "Commit author name",
|
||||
"settings.sourceControl.authorEmail": "Commit author email",
|
||||
|
|
|
@ -21,7 +21,7 @@ export const useSourceControlStore = defineStore('sourceControl', () => {
|
|||
authorEmail: '',
|
||||
repositoryUrl: '',
|
||||
branchReadOnly: false,
|
||||
branchColor: '#F4A6DC',
|
||||
branchColor: '#5296D6',
|
||||
connected: false,
|
||||
publicKey: '',
|
||||
});
|
||||
|
|
|
@ -226,7 +226,6 @@ const refreshBranches = async () => {
|
|||
>{{ locale.baseText('settings.sourceControl.button.disconnect') }}</n8n-button
|
||||
>
|
||||
</div>
|
||||
<small>{{ locale.baseText('settings.sourceControl.repoUrlDescription') }}</small>
|
||||
</div>
|
||||
<div :class="[$style.group, $style.groupFlex]">
|
||||
<div>
|
||||
|
|
Loading…
Reference in a new issue