1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

fix send options viewsLeft (#11594)

This commit is contained in:
Jordan Aasen
2024-10-17 06:28:02 -07:00
committed by GitHub
parent 783305696a
commit 288b0cff2f

View File

@@ -27,16 +27,16 @@ import { SendFormContainer } from "../../send-form-container";
templateUrl: "./send-options.component.html", templateUrl: "./send-options.component.html",
standalone: true, standalone: true,
imports: [ imports: [
CardComponent,
CheckboxModule,
CommonModule,
FormFieldModule,
IconButtonModule,
JslibModule,
ReactiveFormsModule,
SectionComponent, SectionComponent,
SectionHeaderComponent, SectionHeaderComponent,
TypographyModule, TypographyModule,
JslibModule,
CardComponent,
FormFieldModule,
ReactiveFormsModule,
IconButtonModule,
CheckboxModule,
CommonModule,
], ],
}) })
export class SendOptionsComponent implements OnInit { export class SendOptionsComponent implements OnInit {
@@ -61,10 +61,12 @@ export class SendOptionsComponent implements OnInit {
return this.config.mode === "edit" && this.sendOptionsForm.value.maxAccessCount !== null; return this.config.mode === "edit" && this.sendOptionsForm.value.maxAccessCount !== null;
} }
get viewsLeft(): number { get viewsLeft() {
return this.sendOptionsForm.value.maxAccessCount return String(
? this.sendOptionsForm.value.maxAccessCount - this.sendOptionsForm.value.accessCount this.sendOptionsForm.value.maxAccessCount
: 0; ? this.sendOptionsForm.value.maxAccessCount - this.sendOptionsForm.value.accessCount
: 0,
);
} }
constructor( constructor(