1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

Remove standalone true from billing (#15038)

This commit is contained in:
Oscar Hinton
2025-06-02 21:40:06 +02:00
committed by GitHub
parent 14e363ad86
commit 8967fc21db
15 changed files with 0 additions and 15 deletions

View File

@@ -51,7 +51,6 @@ import { ReplacePipe } from "./replace.pipe";
@Component({
templateUrl: "manage-clients.component.html",
standalone: true,
imports: [
AvatarModule,
TableModule,

View File

@@ -24,7 +24,6 @@ const gearIcon = svgIcon`
@Component({
selector: "app-no-clients",
standalone: true,
imports: [SharedOrganizationModule],
template: `<div class="tw-flex tw-flex-col tw-items-center tw-text-info">
<bit-icon [icon]="icon"></bit-icon>

View File

@@ -2,7 +2,6 @@ import { Pipe, PipeTransform } from "@angular/core";
@Pipe({
name: "replace",
standalone: true,
})
export class ReplacePipe implements PipeTransform {
transform(value: string, pattern: string, replacement: string): string {