don't display 'null' in the prompt

pull/1/head
yann300 7 years ago
parent 141205b0e7
commit 9a7f5cd4ba
  1. 1
      src/app/ui/modal-dialog-custom.js

@ -12,6 +12,7 @@ module.exports = {
modal('', yo`<div>${text}</div>`, null, { label: null })
},
prompt: function (title, text, inputValue, ok, cancel) {
if (!inputValue) inputValue = ''
modal(title,
yo`<div>${text}<div><input type='text' name='prompt_text' id='prompt_text' class="${css['prompt_text']}" value='${inputValue}' ></div></div>`,
{

Loading…
Cancel
Save