Skip to content

Commit

Permalink
Fix incorrect placement of bracket for @check by the text editor
Browse files Browse the repository at this point in the history
  • Loading branch information
Azurelol committed Dec 11, 2024
1 parent 1e85a66 commit 953ce6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/helpers/text-editor-command-dropdown.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async function promptCheckDialog(state, dispatch, view) {
});
if (result) {
const { first, second, level } = result;
dispatch(state.tr.insertText(` @CHECK[${first} ${second}] ${level}`));
dispatch(state.tr.insertText(` @CHECK[${first} ${second} ${level}]`));
}
}

Expand Down

0 comments on commit 953ce6f

Please sign in to comment.