fix: hide modal header when no title for ONLYOFFICE editor

This commit is contained in:
root
2026-07-16 11:06:18 +00:00
parent 1fe8bc27bd
commit df08ee7879
2 changed files with 6 additions and 4 deletions

View File

@@ -656,12 +656,14 @@ document.getElementById('chat-input')?.addEventListener('keypress', e => {
// ============================================================
function showModal(body, title, size = '') {
const overlay = document.getElementById('modal-overlay');
overlay.innerHTML = `
<div class="modal" style="${size === 'large' ? 'max-width:1000px' : ''}">
const headerHTML = title ? `
<div class="modal-header">
<h2>${title}</h2>
<button class="modal-close" onclick="closeModal()">&times;</button>
</div>
</div>` : '';
overlay.innerHTML = `
<div class="modal" style="${size === 'large' ? 'max-width:1000px' : ''}">
${headerHTML}
<div>${body}</div>
</div>
`;