1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-29 21:06:10 +02:00

add comma

This commit is contained in:
Anbraten 2024-04-03 08:35:33 +02:00
parent 088454f312
commit 43ad9f5173

View File

@ -26,6 +26,6 @@ document.body.addEventListener('htmx:responseError', (e) => {
document.body.addEventListener('htmx:wsOpen', (e) => {
const socket = e.detail.socketWrapper;
socket.send(
JSON.stringify({action: 'subscribe', data: {url: window.location.href}})
JSON.stringify({action: 'subscribe', data: {url: window.location.href}}),
);
});