1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

updates for 2fa auth services

This commit is contained in:
Kyle Spearrin
2018-02-01 22:55:49 -05:00
parent 5845291aaf
commit 7c3bed1737
12 changed files with 195 additions and 36 deletions

View File

@@ -434,7 +434,7 @@ export class CipherService implements CipherServiceAbstraction {
let aName = a.name;
let bName = b.name;
let result = this.i18nService.collator ? this.i18nService.collator.compare(aName, bName) :
const result = this.i18nService.collator ? this.i18nService.collator.compare(aName, bName) :
aName.localeCompare(bName);
if (result !== 0 || a.type !== CipherType.Login || b.type !== CipherType.Login) {