fix: hide modal header when no title for ONLYOFFICE editor
This commit is contained in:
@@ -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()">×</button>
|
||||
</div>
|
||||
</div>` : '';
|
||||
overlay.innerHTML = `
|
||||
<div class="modal" style="${size === 'large' ? 'max-width:1000px' : ''}">
|
||||
${headerHTML}
|
||||
<div>${body}</div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user