Skip to content

Commit

Permalink
fix: git status issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tikazyq committed Jul 5, 2024
1 parent e3c1198 commit 0f100f9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/components/git/GitBranchSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ const onSelect = (value: string) => {
const onPull = () => {
selectRef.value?.blur();
emit('pull');
console.debug('onPull');
};
const onCommit = () => {
Expand Down
7 changes: 0 additions & 7 deletions src/components/git/GitStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,6 @@ const data = computed(() => {
spinning: true,
};
case GIT_STATUS_READY:
return {
label: t('components.git.status.label.cloning'),
tooltip: t('components.git.status.tooltip.cloning'),
type: 'warning',
icon: ['fa', 'spinner'],
spinning: true,
};
return {
label: t('components.git.status.label.ready'),
tooltip: t('components.git.status.tooltip.ready'),
Expand Down

0 comments on commit 0f100f9

Please sign in to comment.