From 049fc274b054d488afe1ad6ffecbaaea7347d02e Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 30 Sep 2025 06:52:28 -0300 Subject: [PATCH] style --- public/support.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/public/support.html b/public/support.html index c5c2de8..65bf363 100644 --- a/public/support.html +++ b/public/support.html @@ -116,10 +116,10 @@ Please note: it does not cover general Odoo usage or functional questions. Usage Tips:
- ⚠️ Important: If you cannot access Odoo due to a Git change, you can easily revert the last change via our homepage. + ⚠️ Important: If you cannot access Odoo due to a Git change, you can easily revert the last change via our homepage.
@@ -165,6 +165,7 @@ Please note: it does not cover general Odoo usage or functional questions. const input = document.getElementById('messageInput'); const sendBtn = document.getElementById('sendBtn'); document.getElementById('webhook').textContent = WEBHOOK; + const uuid = params.get("uuid"); // Generate UUID once per page load function generateUUID(){ @@ -279,7 +280,7 @@ Please note: it does not cover general Odoo usage or functional questions. input.addEventListener('keydown', (e)=>{ if(e.key === 'Enter' && !e.shiftKey){ e.preventDefault(); sendMessage(); } }); // friendly welcome - appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly.', 'them'); + appendMessage('I am here to help with all your hosting-related questions.Type /ticket to contact our support team directly. Your UUID is '+uuid, 'them');