import { Component } from "@angular/core"; import { Router } from "@angular/router"; import { EnvironmentComponent as BaseEnvironmentComponent } from "@bitwarden/angular/components/environment.component"; import { EnvironmentService } from "@bitwarden/common/abstractions/environment.service"; import { I18nService } from "@bitwarden/common/abstractions/i18n.service"; import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service"; @Component({ selector: "app-environment", templateUrl: "environment.component.html", }) export class EnvironmentComponent extends BaseEnvironmentComponent { constructor( platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService, i18nService: I18nService, private router: Router ) { super(platformUtilsService, environmentService, i18nService); this.showCustom = true; } saved() { super.saved(); this.router.navigate([""]); } }