We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2370205 commit fa265d7Copy full SHA for fa265d7
browser/components/MarkdownSplitEditor.js
@@ -77,8 +77,8 @@ class MarkdownSplitEditor extends React.Component {
77
handleCheckboxClick (e) {
78
e.preventDefault()
79
e.stopPropagation()
80
- const idMatch = /checkbox-([0-9]+)/
81
- const checkedMatch = /^\s*[\+\-\*] \[x\]/i
+ const idMatch = /checkbox-([0-9]+)/
+ const checkedMatch = /^\s*[\+\-\*] \[x\]/i
82
const uncheckedMatch = /^\s*[\+\-\*] \[ \]/
83
if (idMatch.test(e.target.getAttribute('id'))) {
84
const lineIndex = parseInt(e.target.getAttribute('id').match(idMatch)[1], 10) - 1
0 commit comments