LF contact field in embed

This commit is contained in:
taskylizard 2023-11-19 12:16:39 +05:30
parent ccaa662813
commit 84337b7b1d
No known key found for this signature in database
GPG Key ID: 5CABA3D642DDC497
2 changed files with 2 additions and 1 deletions

View File

@ -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()

View File

@ -3,4 +3,5 @@ import tasky from "@taskylizard/eslint-config";
export default tasky({
vue: true,
browser: true,
});