Update text for accounts menu when no auth providers are registered, fixes #94053

This commit is contained in:
Rachel Macfarlane 2020-04-03 17:35:34 -07:00
parent 99f1267bd4
commit 4a7a581b85

View file

@ -51,7 +51,7 @@ export class AuthenticationService extends Disposable implements IAuthentication
this._placeholderMenuItem = MenuRegistry.appendMenuItem(MenuId.AccountsContext, {
command: {
id: 'noAuthenticationProviders',
title: nls.localize('noAuthenticationProviders', "No authentication providers registered")
title: nls.localize('loading', "Loading...")
},
});
}
@ -78,7 +78,7 @@ export class AuthenticationService extends Disposable implements IAuthentication
this._placeholderMenuItem = MenuRegistry.appendMenuItem(MenuId.AccountsContext, {
command: {
id: 'noAuthenticationProviders',
title: nls.localize('noAuthenticationProviders', "No authentication providers registered")
title: nls.localize('loading', "Loading...")
},
});
}