Skip to content

Commit

Permalink
Fix loader for categories that include space
Browse files Browse the repository at this point in the history
  • Loading branch information
sungshon authored Aug 28, 2019
1 parent 6b51c3c commit bb00432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ function updateView(cb, loading) {
} else {
let typeStr = ''
addons[key].forEach(addon => { typeStr += addonToRow(jsonData, addon, loading) })
$('#' + key).html(typeStr)
$('#' + tag).html(typeStr)
}
}

Expand Down

0 comments on commit bb00432

Please sign in to comment.