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 94599e5 commit e9a0319Copy full SHA for e9a0319
apps/desktop/src/components/projectSettings/AppearanceSettings.svelte
@@ -18,14 +18,15 @@
18
} from '@gitbutler/ui';
19
20
const userSettings = inject(SETTINGS);
21
- const diff = `@@ -56,10 +56,9 @@
+ const diff = `@@ -56,10 +56,10 @@
22
// Diff example
23
projectName={project.title}
24
{remoteBranches}
25
on:branchSelected={async (e) => {
26
- selectedBranch = e.detail;
27
- if ($platformName === 'win32') {
28
-+ if ($platformName === 'win64' && $userSettings.enableAdvancedFeatures && project.hasRemoteOrigin) {
++ if ($platformName === 'win64' && $userSettings.enableAdvancedFeatures) {
29
++ // Enhanced platform detection with feature flags
30
setTarget();
31
}
32
}}`;
0 commit comments