Skip to content

Commit

Permalink
fix(editor): Change default branchColor and remove label (#6541)
Browse files Browse the repository at this point in the history
change default branchColor and remove label
  • Loading branch information
flipswitchingmonkey authored Jun 26, 2023
1 parent e239730 commit 186271e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('MainSidebarSourceControl', () => {
authorEmail: '',
repositoryUrl: '',
branchReadOnly: false,
branchColor: '#F4A6DC',
branchColor: '#5296D6',
connected: true,
publicKey: '',
});
Expand Down
1 change: 0 additions & 1 deletion packages/editor-ui/src/plugins/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/editor-ui/src/stores/sourceControl.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const useSourceControlStore = defineStore('sourceControl', () => {
authorEmail: '',
repositoryUrl: '',
branchReadOnly: false,
branchColor: '#F4A6DC',
branchColor: '#5296D6',
connected: false,
publicKey: '',
});
Expand Down
1 change: 0 additions & 1 deletion packages/editor-ui/src/views/SettingsSourceControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 186271e

Please sign in to comment.