Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

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 #7778, particularly the comment by @mcg, support for
Enpass is already working. So the option can be re-enabled.

Fixes #7778, fixes #5097, fixes #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

1 comment on commit be5a9bd

@amjith
Copy link

@amjith amjith commented on be5a9bd Jul 20, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When will this be available in a new release?

Please sign in to comment.