1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

loginUriMatchChanged

This commit is contained in:
Kyle Spearrin
2018-03-03 22:55:33 -05:00
parent d106ec6179
commit b3d21c6f17
3 changed files with 8 additions and 2 deletions

View File

@@ -194,7 +194,8 @@
{{'autofillDetection' | i18n}} {{(i + 1)}}
</label>
<select id="loginUriMatch{{i}}" name="Login.Uris[{{i}}].Match" [(ngModel)]="u.match"
[hidden]="u.showOptions === false || (u.showOptions == null && u.match == null)">
[hidden]="u.showOptions === false || (u.showOptions == null && u.match == null)"
(change)="loginUriMatchChanged(u)">
<option *ngFor="let o of uriMatchOptions" [ngValue]="o.value">{{o.name}}</option>
</select>
</div>