From 38309558dcd75b63e9f0b47149495a8571e27025 Mon Sep 17 00:00:00 2001 From: Brandon Jordan Date: Mon, 27 May 2024 17:30:45 -0400 Subject: [PATCH] Correct Jelly syntax --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 67c3b15..58f1321 100644 --- a/src/App.vue +++ b/src/App.vue @@ -211,7 +211,7 @@ export default { jellyCode: computed(() => { let code = `#Icon: ${this.glyph.identifier}`; if (this.color.identifier) { - code += `
#Color: ${this.jellyColorName()}`; + code += `, #Color: ${this.jellyColorName()}`; } return code;