updated password input UI

This commit is contained in:
Danny Coates 2018-02-16 12:56:53 -08:00
parent 8d41111cd6
commit 346e604f34
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
37 changed files with 282 additions and 288 deletions

View file

@ -5,7 +5,7 @@ const { bytes } = require('../../utils');
module.exports = function(state, emit) {
const transfer = state.transfer;
const div = html`
return html`
<div class="page effect--fadeIn">
<div class="title">
${state.translate('uploadingPageProgress', {
@ -36,5 +36,4 @@ module.exports = function(state, emit) {
btn.textContent = state.translate('uploadCancelNotification');
emit('cancel');
}
return div;
};