Fix export and username prompt

pull/1/head
yflory 2019-12-11 16:40:39 +01:00
parent 366e45cac4
commit 32891be320
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ define([
opt = opt || {};
var inputBlock = opt.password ? UI.passwordInput() : dialog.textInput();
var input = opt.password ? $(inputBlock).find('input')[0] : inputBlock;
var input = $(inputBlock).is('input') ? inputBlock : $(inputBlock).find('input')[0];
input.value = typeof(def) === 'string'? def: '';
var message;