From 84337b7b1d73b4123ff79e05cffa44d10b710a34 Mon Sep 17 00:00:00 2001 From: taskylizard <75871323+taskylizard@users.noreply.github.com> Date: Sun, 19 Nov 2023 12:16:39 +0530 Subject: [PATCH] LF contact field in embed --- .vitepress/routes/index.post.ts | 2 +- eslint.config.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.vitepress/routes/index.post.ts b/.vitepress/routes/index.post.ts index 2d0896af2..9560f318e 100644 --- a/.vitepress/routes/index.post.ts +++ b/.vitepress/routes/index.post.ts @@ -26,7 +26,7 @@ export default defineEventHandler(async (event) => { throw new Error("Invalid input."); let description = `${message}\n\n`; - if (contact) description += `**Contact:** ${contact}`; + if (contact) description += `**Contact:** ${contact}\n`; if (page) description += `**Page:** \`${page}\``; await fetcher() diff --git a/eslint.config.js b/eslint.config.js index 53e8f26c0..4f314c14b 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -3,4 +3,5 @@ import tasky from "@taskylizard/eslint-config"; export default tasky({ vue: true, + browser: true, });