mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Show Azure Data Studio instead of azuredatastudio when updating (#3787)
* show Azure Data Studio instead of azuredatastudio when updating * added sql carbon tag
This commit is contained in:
@@ -424,9 +424,11 @@ export class UpdateContribution implements IGlobalActivity {
|
|||||||
let clazz: string | undefined;
|
let clazz: string | undefined;
|
||||||
|
|
||||||
if (state.type === StateType.AvailableForDownload || state.type === StateType.Downloaded || state.type === StateType.Ready) {
|
if (state.type === StateType.AvailableForDownload || state.type === StateType.Downloaded || state.type === StateType.Ready) {
|
||||||
badge = new NumberBadge(1, () => nls.localize('updateIsReady', "New {0} update available.", product.nameShort));
|
// {{SQL CARBON EDIT}}
|
||||||
|
badge = new NumberBadge(1, () => nls.localize('updateIsReady', "New {0} update available.", product.nameLong));
|
||||||
} else if (state.type === StateType.CheckingForUpdates || state.type === StateType.Downloading || state.type === StateType.Updating) {
|
} else if (state.type === StateType.CheckingForUpdates || state.type === StateType.Downloading || state.type === StateType.Updating) {
|
||||||
badge = new ProgressBadge(() => nls.localize('updateIsReady', "New {0} update available.", product.nameShort));
|
// {{SQL CARBON EDIT}}
|
||||||
|
badge = new ProgressBadge(() => nls.localize('updateIsReady', "New {0} update available.", product.nameLong));
|
||||||
clazz = 'progress-badge';
|
clazz = 'progress-badge';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user