link visibility of passphrase inputs on EnterPassphrase page
This commit is contained in:
parent
295698e62f
commit
97528d65d6
@ -4,10 +4,10 @@
|
|||||||
export let value = '';
|
export let value = '';
|
||||||
export let placeholder = '';
|
export let placeholder = '';
|
||||||
export let autofocus = false;
|
export let autofocus = false;
|
||||||
|
export let show = false;
|
||||||
let classes = '';
|
let classes = '';
|
||||||
export {classes as class};
|
export {classes as class};
|
||||||
|
|
||||||
let show = false;
|
|
||||||
let input;
|
let input;
|
||||||
|
|
||||||
export function focus() {
|
export function focus() {
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
const dispatch = createEventDispatcher();
|
const dispatch = createEventDispatcher();
|
||||||
|
|
||||||
|
let showPassphrase = false;
|
||||||
let alert;
|
let alert;
|
||||||
let saving = false;
|
let saving = false;
|
||||||
let passphrase = '';
|
let passphrase = '';
|
||||||
@ -52,7 +53,6 @@
|
|||||||
try {
|
try {
|
||||||
await alert.run(async () => {
|
await alert.run(async () => {
|
||||||
await invoke('set_passphrase', {passphrase})
|
await invoke('set_passphrase', {passphrase})
|
||||||
throw('something bad happened');
|
|
||||||
$appState.sessionStatus = 'unlocked';
|
$appState.sessionStatus = 'unlocked';
|
||||||
dispatch('save');
|
dispatch('save');
|
||||||
});
|
});
|
||||||
@ -73,6 +73,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<PassphraseInput
|
<PassphraseInput
|
||||||
bind:value={passphrase}
|
bind:value={passphrase}
|
||||||
|
bind:show={showPassphrase}
|
||||||
on:input={onInput}
|
on:input={onInput}
|
||||||
placeholder="correct horse battery staple"
|
placeholder="correct horse battery staple"
|
||||||
/>
|
/>
|
||||||
@ -84,6 +85,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<PassphraseInput
|
<PassphraseInput
|
||||||
bind:value={confirmPassphrase}
|
bind:value={confirmPassphrase}
|
||||||
|
bind:show={showPassphrase}
|
||||||
on:input={onInput} on:change={onChange}
|
on:input={onInput} on:change={onChange}
|
||||||
placeholder="correct horse battery staple"
|
placeholder="correct horse battery staple"
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user