mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 21:33:27 +00:00
Hide +New Project on secret edit (#5370)
This commit is contained in:
@@ -68,6 +68,9 @@ export class SecretDialogComponent implements OnInit {
|
||||
throw new Error(`The secret dialog was not called with the appropriate operation values.`);
|
||||
} else if (this.data.operation == OperationType.Add) {
|
||||
await this.loadProjects(true);
|
||||
if (this.data.projectId == null || this.data.projectId == "") {
|
||||
this.addNewProjectOptionToProjectsDropDown();
|
||||
}
|
||||
}
|
||||
|
||||
if (this.data.projectId) {
|
||||
@@ -78,10 +81,6 @@ export class SecretDialogComponent implements OnInit {
|
||||
this.formGroup.get("project").removeValidators(Validators.required);
|
||||
this.formGroup.get("project").updateValueAndValidity();
|
||||
}
|
||||
|
||||
if (this.data.projectId == null || this.data.projectId == "") {
|
||||
this.addNewProjectOptionToProjectsDropDown();
|
||||
}
|
||||
}
|
||||
|
||||
async loadData() {
|
||||
|
||||
Reference in New Issue
Block a user