Double HTML encoding in Project "details" field
`) are displayed as plain text to the user instead of being rendered as rich text. ### Expected Behavior The rich text editor should render the HTML correctly without exposing the raw HTML tags to the user. ### Root Cause & Proposed Fix The issue is located in the Blade templates where the `details` field is printed. The `{{ }}` syntax in Blade already escapes data, so wrapping it in `htmlentities()` causes the double escape. **Files affected:** 1. `app/Domain/Projects/Templates/submodules/projectDetails.blade.php` 2. `app/Domain/Projects/Templates/newProject.blade.php` **Current code:** `` **Proposed fix:** Replace with the unescaped Blade syntax so TipTap can initialize the HTML properly: `` ### Environment * **Leantime Version:** 3.8.0 (also tested/present in latest) * **Installation Method:** Docker Para su conocimiento, este contenido, así como la propuesta de solución del bug se ha llevado a cabo con ayuda de IA. ### Reproduction steps 1. Go to Project Settings -> Create a new project or edit an existing one. 2. Type some text in the "What are you trying to achieve?" field (e.g., "Hello"). 3. Save the project. 4. Edit the project again. 5. The text in the editor now visually shows `
Hello
` instead of rendering it. ### Error Logs (LEANTIMEFOLDER/storage/logs) _No response_Source: Leantime/leantime