1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-21 03:43:58 +00:00

Merge branch 'main' into ps/extension-refresh

This commit is contained in:
Will Martin
2024-07-11 15:12:07 -04:00
committed by GitHub
741 changed files with 29429 additions and 8546 deletions

View File

@@ -56,7 +56,11 @@ export class SelectComponent<T> implements BitFormFieldControl, ControlValueAcce
@HostBinding("class") protected classes = ["tw-block", "tw-w-full", "tw-h-full"];
@HostBinding()
// Usings a separate getter for the HostBinding to get around an unexplained angular error
@HostBinding("attr.disabled")
get disabledAttr() {
return this.disabled || null;
}
@Input()
get disabled() {
return this._disabled ?? this.ngControl?.disabled ?? false;