mirror of
https://github.com/bitwarden/browser
synced 2026-01-02 00:23:35 +00:00
Adds standalone: false to all components since Angular is changing the default to true and we'd rather not have the angular PR change 300+ files.
11 lines
408 B
TypeScript
11 lines
408 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { UpdateTempPasswordComponent as BaseUpdateTempPasswordComponent } from "@bitwarden/angular/auth/components/update-temp-password.component";
|
|
|
|
@Component({
|
|
selector: "app-update-temp-password",
|
|
templateUrl: "update-temp-password.component.html",
|
|
standalone: false,
|
|
})
|
|
export class UpdateTempPasswordComponent extends BaseUpdateTempPasswordComponent {}
|