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

dont allow shorthand property assignments

This commit is contained in:
Kyle Spearrin
2017-12-06 14:23:34 -05:00
parent 5319568d81
commit a4127f2571
24 changed files with 30 additions and 28 deletions

View File

@@ -69,7 +69,7 @@ export class CurrentController {
}
this.autofillService.doAutoFill({
cipher,
cipher: cipher,
pageDetails: this.pageDetails,
fromBackground: false,
}).then((totpCode: string) => {
@@ -165,5 +165,5 @@ export class CurrentController {
export const CurrentComponent = {
bindings: {},
controller: CurrentController,
template,
template: template,
};