Skip to content

Commit

Permalink
nobody bothered to check if half/all worked in builder when it was added
Browse files Browse the repository at this point in the history
  • Loading branch information
FuzzyGamesOn committed May 4, 2024
1 parent 2dc5044 commit 85b5256
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ export function encodeJsonWithSpacing(js_object) {
.replace(/\{/g, '\n\t{')
.replace(/\}\,/g, '\n\t},')
.replace(/\}\]/, '\n\t}\n]')
.replace(/\:\s?(?!\d)/g, ': ');
.replace(/\:\s?(?!\d)/g, ': ')
.replace(/\:\s*ALL/, ":ALL").replace(/\:\s*HALF/, ":HALF");

let manual_keywords = [
/* multiple */
Expand Down

0 comments on commit 85b5256

Please sign in to comment.