Skip to content

Commit

Permalink
fix(Config): Edit old RR defaults remove for posts (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric committed Mar 22, 2020
1 parent 73b073d commit 7a5acff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/data/modules/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ function tbconfig () {

const removalReasonText = unescape(config.removalReasons.reasons[i].text) || '',
removalReasonTitle = config.removalReasons.reasons[i].title || '',
removalReasonRemovePosts = config.removalReasons.reasons[i].removePosts ? 'checked' : '',
removalReasonRemovePosts = config.removalReasons.reasons[i].removePosts !== false ? 'checked' : '',
removalReasonRemoveComments = config.removalReasons.reasons[i].removeComments ? 'checked' : '',
removalReasonFlairText = config.removalReasons.reasons[i].flairText || '',
removalReasonFlairCSS = config.removalReasons.reasons[i].flairCSS || '';
Expand Down

0 comments on commit 7a5acff

Please sign in to comment.