We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 467c999 commit c13bf7aCopy full SHA for c13bf7a
1 file changed
src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts
@@ -221,7 +221,10 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo
221
[
222
{
223
label: localize('show conflicts', "Show Conflicts"),
224
- run: () => this.handleConflicts()
+ run: () => {
225
+ this.telemetryService.publicLog2('sync/showConflicts');
226
+ this.handleConflicts();
227
+ }
228
}
229
],
230
0 commit comments