mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix instance of "Code" in git fetch user prompt (#1234)
This commit is contained in:
@@ -56,7 +56,8 @@ export class AutoFetcher {
|
|||||||
const yes: MessageItem = { title: localize('yes', "Yes") };
|
const yes: MessageItem = { title: localize('yes', "Yes") };
|
||||||
const no: MessageItem = { isCloseAffordance: true, title: localize('no', "No") };
|
const no: MessageItem = { isCloseAffordance: true, title: localize('no', "No") };
|
||||||
const askLater: MessageItem = { title: localize('not now', "Ask Me Later") };
|
const askLater: MessageItem = { title: localize('not now', "Ask Me Later") };
|
||||||
const result = await window.showInformationMessage(localize('suggest auto fetch', "Would you like Code to [periodically run 'git fetch']({0})?", 'https://go.microsoft.com/fwlink/?linkid=865294'), yes, no, askLater);
|
// {{SQL CARBON EDIT}}
|
||||||
|
const result = await window.showInformationMessage(localize('suggest auto fetch', "Would you like SQL Operations Studio to [periodically run 'git fetch']({0})?", 'https://go.microsoft.com/fwlink/?linkid=865294'), yes, no, askLater);
|
||||||
|
|
||||||
if (result === askLater) {
|
if (result === askLater) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user