diff options
author | Ev Bogue <ev@evbogue.com> | 2019-04-10 19:16:42 -0500 |
---|---|---|
committer | Ev Bogue <ev@evbogue.com> | 2019-04-10 19:16:42 -0500 |
commit | b3bc243be7a151d634f19ed3b516d5d6a2ab9cfc (patch) | |
tree | f69c44a71ed7d24c41f20132bfdeb5f3cd8899c9 | |
parent | abc12dc0d7b262b3fe82d6175a760e363c85307b (diff) |
quick fix
-rw-r--r-- | app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ function route () { var oldKey = h('div', {classlist: 'message'}) oldKey.appendChild(h('p', ['You had a key in localStorage. Import it to the new database by pasting it into the box above.'])) - oldKey.appendChild(h('pre', {style: 'width: 80%'}, [h('code', [JSON.stringify(localStorage['id'])])])) + oldKey.appendChild(h('pre', {style: 'width: 80%'}, [h('code', [localStorage['id']])])) scroller.appendChild(oldKey) } |