Skip to content

Commit 805a9fa

Browse files
committed
Fix bullet not assigned
1 parent ef76caa commit 805a9fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

addon/edit/continuelist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
if (numbered) {
5858
bullet = (disableAutoIncrement ? 1 : (parseInt(match[3], 10) + 1)) + match[4];
5959
} else {
60-
match[2].replace("x", " ");
60+
bullet = match[2].replace("x", " ");
6161
}
6262
after = after.replace('[x]', '[ ]'); // make todo list default unchecked
6363
replacements[i] = "\n" + indent + bullet + after;

0 commit comments

Comments
 (0)