Skip to content

Commit

Permalink
Part 2 of fix for keys_ok/keys_bad - re #62
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsage committed Feb 3, 2023
1 parent ee27bc9 commit 4fb5d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/renderJS/assist_ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ window.mods.receive('fromMain_modList', (modCollect) => {


function doBadgeSet(originalBadges, thisMod, thisCollection, newMods, bindConflicts) {
const theseBadges = originalBadges || []
const theseBadges = [...originalBadges] || []

if ( Object.keys(thisMod.modDesc.binds).length > 0 ) {
theseBadges.push(typeof bindConflicts[thisMod.fileDetail.shortName] !== 'undefined' ? 'keys_bad' : 'keys_ok')
Expand Down

0 comments on commit 4fb5d33

Please sign in to comment.