Fix Bug 501. The key fix is the first line in funciton wordTemplate() from word_operation.js, i.e., using double quotes instead of single quotes. #183
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "Bug501-Hui"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
@ -96,3 +100,3 @@
function wordTemplate(word) {
// 这个模板应当与 templates/userpage_get.html 中的 <p id='p_${word.word}' class="new-word" > ... </p> 保持一致
return `<p id='p_${word.word}' class="new-word" >
return `<p id="p_${word.word}" class="new-word" >
This is the key part for fixing the bug, i.e., using double quotes instead of single quotes.