1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

Vault Refactor: Clean up some strict types (#12357)

* update cipher-view to account for strict type checking

* update view-identity-sections to account for strict type checking

* update read-only-cipher-card to account for strict type checking

* remove unused card import

* remove unused card import

* update additional-options to account for strict type checking
This commit is contained in:
Nick Krantz
2024-12-20 10:16:34 -06:00
committed by GitHub
parent b27a1a5337
commit 6ad35e0871
5 changed files with 46 additions and 26 deletions

View File

@@ -1,5 +1,3 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
import { CommonModule } from "@angular/common";
import { Component, Input } from "@angular/core";
@@ -31,5 +29,5 @@ import {
],
})
export class AdditionalOptionsComponent {
@Input() notes: string;
@Input() notes: string = "";
}