👕 Fix 'Unnecessary escape character: \"'

This commit is contained in:
Jason Rudolph
2017-10-23 08:49:27 -04:00
parent 7b76ee3f25
commit 034f003705

View File

@@ -207,6 +207,6 @@ const humanizeKeystrokes = function (keystroke) {
var getKeystroke = function (bindings) {
if (bindings != null ? bindings.length : undefined) {
return `<span class=\"keystroke\">${humanizeKeystrokes(bindings[0].keystrokes)}</span>`
return `<span class="keystroke">${humanizeKeystrokes(bindings[0].keystrokes)}</span>`
}
}