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 fa995a3 commit 0ba9420Copy full SHA for 0ba9420
src/settings/settings.ts
@@ -24,7 +24,7 @@ export const DEFAULT_SETTINGS: GitHubSyncSettings = {
24
syncInterval: 1,
25
syncOnStartup: false,
26
syncConfigDir: true,
27
- conflictHandling: "ask",
+ conflictHandling: "overwrite",
28
showStatusBarItem: true,
29
showSyncRibbonButton: true,
30
enableLogging: true,
src/settings/tab.ts
@@ -182,7 +182,8 @@ export default class GitHubSyncSettingsTab extends PluginSettingTab {
182
this.plugin.settings.conflictHandling = value;
183
await this.plugin.saveSettings();
184
});
185
- });
+ })
186
+ .setDisabled(true);
187
188
containerEl.createEl("h2", { text: "Interface" });
189
0 commit comments