diff --git a/src/main/kotlin/app/viewmodels/BranchesViewModel.kt b/src/main/kotlin/app/viewmodels/BranchesViewModel.kt index ed018ff..f1b1758 100644 --- a/src/main/kotlin/app/viewmodels/BranchesViewModel.kt +++ b/src/main/kotlin/app/viewmodels/BranchesViewModel.kt @@ -39,7 +39,7 @@ class BranchesViewModel @Inject constructor( } fun createBranch(branchName: String) = tabState.safeProcessing( - refreshType = RefreshType.NONE, + refreshType = RefreshType.ONLY_LOG, ) { git -> branchesManager.createBranch(git, branchName) this.loadBranches(git)