diff --git a/static/index.js b/static/index.js index 1f75c47..db10473 100644 --- a/static/index.js +++ b/static/index.js @@ -136,7 +136,7 @@ $(document).ready(() => { let html = ''; if(data.length === 0) { - html += `

Not found: ${word}

`; + html += `

Not found: ${decodeURIComponent(word)}

`; } else { data.forEach(entry => { html += `

${entry.word} (${entry.pos})

`