1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

change the default value

This commit is contained in:
Cy Okeke
2025-07-24 17:11:19 +01:00
parent 0b4a62e7be
commit 56a476bb4c

View File

@@ -44,7 +44,7 @@ const gearIcon = svgIcon`
export class NoClientsComponent {
icon = gearIcon;
@Input() showAddOrganizationButton = true;
@Input() disableAddOrganizationButton = true;
@Input() disableAddOrganizationButton = false;
@Output() addNewOrganizationClicked = new EventEmitter();
addNewOrganization = () => this.addNewOrganizationClicked.emit();