mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
default unknown keys to rscadd (#8543)
This commit is contained in:
@@ -33,7 +33,7 @@ export const CHANGELOG_ENTRIES = [
|
||||
],
|
||||
|
||||
[
|
||||
["qol"],
|
||||
["qol", "tweak"],
|
||||
{
|
||||
placeholders: ["made something easier to use"],
|
||||
},
|
||||
|
||||
@@ -40,7 +40,7 @@ function parseChangelogBody(lines, openTag) {
|
||||
if (match) {
|
||||
const [_, type, description] = match;
|
||||
|
||||
const entry = CHANGELOG_KEYS_TO_ENTRY[type];
|
||||
const entry = CHANGELOG_KEYS_TO_ENTRY[type] || CHANGELOG_KEYS_TO_ENTRY["rscadd"];
|
||||
|
||||
if (entry.placeholders.includes(description)) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user