1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 15:03:26 +00:00

fix merge

This commit is contained in:
Vicki League
2024-09-05 11:19:38 -04:00
parent ae3bd26fa0
commit 67394f79e1

View File

@@ -8,7 +8,6 @@ import {
HostListener,
Input,
ViewChild,
booleanAttribute,
signal,
} from "@angular/core";
@@ -68,13 +67,6 @@ export class BitFormFieldComponent implements AfterContentChecked {
return borderClasses.join(" ");
}
/**
* NOTE: Placeholder to match the API of the form-field component in the `ps/extension` branch,
* no functionality is implemented as of now.
*/
@Input({ transform: booleanAttribute })
disableReadOnlyBorder = false;
@HostBinding("class")
get classList() {
return ["tw-block", "tw-pt-2"].concat(this.disableMargin ? [] : ["tw-mb-4"]);