Skip to content

Commit d890a22

Browse files
committed
microsoft#103863 update label
1 parent 22700dd commit d890a22

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

src/vs/workbench/services/userDataSync/browser/userDataSyncWorkbenchService.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,14 @@ export class UserDataSyncWorkbenchService extends Disposable implements IUserDat
331331
}
332332
});
333333
if (manualSyncTask.status === SyncStatus.HasConflicts) {
334-
await this.dialogService.show(Severity.Warning, localize('conflicts detected', "Conflicts Detected"), [], {
335-
detail: localize('resolve', "Unable to merge due to conflicts. Please merge manually to continue...")
336-
});
334+
await this.dialogService.show(
335+
Severity.Warning,
336+
localize('conflicts detected', "Conflicts Detected"),
337+
[localize('merge Manually', "Merge Manually...")],
338+
{
339+
detail: localize('resolve', "Unable to merge due to conflicts. Please merge manually to continue..."),
340+
}
341+
);
337342
await manualSyncTask.discardConflicts();
338343
action = 'manual';
339344
}

0 commit comments

Comments
 (0)