Add connecting title to spinner for Connection dialog (#9623)

This commit is contained in:
Charles Gagnon
2020-03-16 08:26:35 -07:00
committed by GitHub
parent d6d33165f1
commit 64eb406fdc
2 changed files with 17 additions and 1 deletions

View File

@@ -103,7 +103,17 @@ export class ConnectionDialogWidget extends Modal {
@ILogService logService: ILogService,
@ITextResourcePropertiesService textResourcePropertiesService: ITextResourcePropertiesService
) {
super(localize('connection', "Connection"), TelemetryKeys.Connection, telemetryService, layoutService, clipboardService, themeService, logService, textResourcePropertiesService, contextKeyService, { hasSpinner: true, hasErrors: true });
super(
localize('connection', "Connection"),
TelemetryKeys.Connection,
telemetryService,
layoutService,
clipboardService,
themeService,
logService,
textResourcePropertiesService,
contextKeyService,
{ hasSpinner: true, spinnerTitle: localize('connecting', "Connecting"), hasErrors: true });
}
/**