1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

default options to show if match has a value set

This commit is contained in:
Kyle Spearrin
2018-03-02 08:49:40 -05:00
parent 295068a30c
commit 59b8014c69
3 changed files with 3 additions and 3 deletions

View File

@@ -258,7 +258,7 @@ export class AddEditComponent implements OnChanges {
toggleUriOptions(uri: LoginUriView) {
const u = (uri as any);
u.showOptions = !u.showOptions;
u.showOptions = u.showOptions == null && uri.match != null ? false : !u.showOptions;
}
async checkPassword() {