« get me outta code hell

yaml: fix bad yellow line break - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-03-31 10:44:59 -0300
committer(quasar) nebula <qznebula@protonmail.com>2025-04-10 16:02:35 -0300
commit7fec9da98aadbf5d55cc49c2a8512e802bfbc3e7 (patch)
tree89e1c951e0d41f318121b89df0333d5e7e76c884 /src/data
parent6eec0d5bc93c8e4d8c434500de028f508ba2a85b (diff)
yaml: fix bad yellow line break
Diffstat (limited to 'src/data')
-rw-r--r--src/data/yaml.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/yaml.js b/src/data/yaml.js
index 518f57ac..3c5c6bb7 100644
--- a/src/data/yaml.js
+++ b/src/data/yaml.js
@@ -412,7 +412,7 @@ export class SkippedFieldsSummaryError extends Error {
         : `${entries.length} fields`);
 
     super(
-      colors.bright(colors.yellow(`Altogether, skipped ${numFieldsText}:\n`)) +
+      colors.bright(colors.yellow(`Altogether, skipped ${numFieldsText}:`)) + '\n' +
       lines.join('\n') + '\n' +
       colors.bright(colors.yellow(`See above errors for details.`)));
   }