We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6809b40 commit 6d012b1Copy full SHA for 6d012b1
apps/desktop/src/components/BranchList.svelte
@@ -180,12 +180,8 @@
180
trackingBranch={branch.remoteTrackingBranch ?? undefined}
181
readonly={!!branch.remoteTrackingBranch}
182
onclick={() => {
183
- if (selection.current?.branchName === branchName && !selection.current.commitId) {
184
- uiState.stack(stackId).selection.set(undefined);
185
- } else {
186
- uiState.stack(stackId).selection.set({ branchName });
187
- intelligentScrollingService.show(projectId, stackId, 'details');
188
- }
+ uiState.stack(stackId).selection.set({ branchName });
+ intelligentScrollingService.show(projectId, stackId, 'details');
189
onselect?.();
190
}}
191
>
0 commit comments