automation: prettier blade ci

This commit is contained in:
unit3d-bot
2025-10-06 07:58:17 +00:00
parent 6b7f420b0d
commit 79ce02e28b

View File

@@ -36,8 +36,11 @@
if (input.value !== '') {
input.value += '\n\n';
}
input.value += '[quote={{ $comment->anon ? 'Anonymous' : '@' . $comment->user->username }}]\n';
input.value += decodeURIComponent(escape(atob('{{ base64_encode($comment->content) }}')));
input.value +=
'[quote={{ $comment->anon ? 'Anonymous' : '@' . $comment->user->username }}]\n';
input.value += decodeURIComponent(
escape(atob('{{ base64_encode($comment->content) }}'))
);
input.value += '\n[/quote]\n\n';
input.dispatchEvent(new Event('input'));
input.focus();