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

Hide bitwarden and pinterest #10345

Merged
merged 1 commit into from
Aug 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions app/renderer/lib/extensionsUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,19 @@ const pinterest = config.pinterestExtensionId
* Properties such as name and description are referenced like keys for proper l10n
*/
const dummyData = [
// {
// id: bitwarden,
// name: 'bitwarden',
// description: 'bitwardenDesc',
// icon: 'img/extensions/bitwarden-128.png'
// },
// {
// id: pinterest,
// name: 'Pinterest Save',
// description: 'pinterestDesc',
// icon: 'img/extensions/pinterest-128.png'
// }
{
id: bitwarden,
name: 'bitwarden',
description: 'bitwardenDesc',
icon: 'img/extensions/bitwarden-128.png'
}, {
id: dashlane,
name: 'dashlane',
description: 'dashlaneDesc',
Expand All @@ -61,12 +68,6 @@ const dummyData = [
name: 'honey',
description: 'honeyDesc',
icon: 'img/extensions/honey-128.png'
},
{
id: pinterest,
name: 'Pinterest Save',
description: 'pinterestDesc',
icon: 'img/extensions/pinterest-128.png'
}
// { id: 'vimium' // TBD }
]
Expand Down
2 changes: 1 addition & 1 deletion js/about/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ class SecurityTab extends ImmutableComponent {
<option data-l10n-id='onePassword' value={passwordManagers.ONE_PASSWORD} />
<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='bitwarden' value={passwordManagers.BITWARDEN} /> */ }
{ /* <option data-l10n-id='enpass' value={passwordManagers.ENPASS} /> */ }
<option data-l10n-id='doNotManageMyPasswords' value={passwordManagers.UNMANAGED} />
</SettingDropdown>
Expand Down