We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a47a7ba commit 0518ec1Copy full SHA for 0518ec1
1 file changed
src/components/ConfigNode.astro
@@ -35,8 +35,8 @@ const formatDefault = (value?: string): Default => {
35
return {
36
value: value
37
.substring(1, value.length - 1)
38
- .split(", ")
39
- .map((i) => ` - ${i}`)
+ .split(",")
+ .map((i) => ` - ${i.trim()}`)
40
.join("\n"),
41
inline: false,
42
};
0 commit comments