Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve region of the passphrase better for hiding from trackers. #5

Merged
merged 1 commit into from
Jul 14, 2024
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
This package follows standard semvar, `<major>.<minor>.<build>`. No breaking changes will be introduced to existing `<minor>` versions.

## 1.1 ##
* Add TOTP supported component for MFA
* [MFA] Add TOTP supported component for MFA
* [Vanish] Improve screen recording blockers

## 0.1 ##
* Released
4 changes: 2 additions & 2 deletions src/components/vanishingKeys.js
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ export default class VanishingKeys extends LitElement {
<div>
<h4 class="title">Privacy Options:</h4>
<div class="input-group">
<div class="input-group fs-exclude" data-hj-suppress data-sl="mask">
<span class="input-group-text" id="passphrase-label">Passphrase</span>
<input id="passphrase" type="text" class="form-control fs-exclude" data-hj-suppress data-sl="mask" autocomplete="off" placeholder="A difficult to guess passphrase" aria-label="Passphrase" aria-describedby="passphrase-label">
</div>
Expand Down Expand Up @@ -547,7 +547,7 @@ export default class VanishingKeys extends LitElement {
<form @submit="${(e) => { decodeSecret.call(this, e); }}">
<div>
<h4 class="title">Enter Passphrase:</h4>
<div class="input-group">
<div class="input-group fs-exclude" data-hj-suppress data-sl="mask">
<span class="input-group-text" id="passphrase-label">Passphrase</span>
${this.decryptedSecret
// eslint-disable-next-line indent
Expand Down
Loading