Skip to content

Commit

Permalink
Revert "Hide Enpass until it's supported in muon"
Browse files Browse the repository at this point in the history
This reverts commit 29a8223.

According to issue brave#7778, particularly the comment by @mcg, support for
Enpass is already working. So the option can be re-enabled.

Fixes brave#7778, fixes brave#5097, fixes brave#6984.
  • Loading branch information
andrewalker committed Jun 19, 2017
1 parent ddc30fd commit be5a9bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion app/renderer/lib/extensionsUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ const dummyData = [
name: 'dashlane',
description: 'dashlaneDesc',
icon: 'img/extensions/dashlane-128.png'
// { id: enpass // TBD },
}, {
id: enpass,
name: 'enpass',
description: 'enpassDesc',
icon: 'img/extensions/enpass-128.png'
}, {
id: lastpass,
name: 'lastpass',
Expand Down
2 changes: 1 addition & 1 deletion js/about/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ class SecurityTab extends ImmutableComponent {
<option data-l10n-id='dashlane' value={passwordManagers.DASHLANE} />
<option data-l10n-id='lastPass' value={passwordManagers.LAST_PASS} />
<option data-l10n-id='bitwarden' value={passwordManagers.BITWARDEN} />
{ /* <option data-l10n-id='enpass' value={passwordManagers.ENPASS} /> */ }
<option data-l10n-id='enpass' value={passwordManagers.ENPASS} />
<option data-l10n-id='doNotManageMyPasswords' value={passwordManagers.UNMANAGED} />
</SettingDropdown>
</SettingItem>
Expand Down

0 comments on commit be5a9bd

Please sign in to comment.