mirror of
https://github.com/bitwarden/browser
synced 2026-03-01 02:51:24 +00:00
Remove standalone true from ac (#15036)
Remove standalone: true from every instance since it's the default as of Angular 19.
This commit is contained in:
@@ -117,7 +117,6 @@ export enum CollectionDialogAction {
|
||||
|
||||
@Component({
|
||||
templateUrl: "collection-dialog.component.html",
|
||||
standalone: true,
|
||||
imports: [SharedModule, AccessSelectorModule, SelectModule],
|
||||
})
|
||||
export class CollectionDialogComponent implements OnInit, OnDestroy {
|
||||
|
||||
@@ -20,7 +20,6 @@ import { SharedModule } from "../../../../../../shared/shared.module";
|
||||
@Component({
|
||||
selector: "app-integration-card",
|
||||
templateUrl: "./integration-card.component.html",
|
||||
standalone: true,
|
||||
imports: [SharedModule],
|
||||
})
|
||||
export class IntegrationCardComponent implements AfterViewInit, OnDestroy {
|
||||
|
||||
@@ -11,7 +11,6 @@ import { Integration } from "../models";
|
||||
@Component({
|
||||
selector: "app-integration-grid",
|
||||
templateUrl: "./integration-grid.component.html",
|
||||
standalone: true,
|
||||
imports: [IntegrationCardComponent, SharedModule],
|
||||
})
|
||||
export class IntegrationGridComponent {
|
||||
|
||||
@@ -6,7 +6,6 @@ import { Integration } from "../../../shared/components/integrations/models";
|
||||
|
||||
@Pipe({
|
||||
name: "filterIntegrations",
|
||||
standalone: true,
|
||||
})
|
||||
export class FilterIntegrationsPipe implements PipeTransform {
|
||||
transform(integrations: Integration[], type: IntegrationType): Integration[] {
|
||||
|
||||
Reference in New Issue
Block a user