web: improve clearing

This commit is contained in:
King Kévin 2023-01-27 02:04:22 +01:00
parent a55b37c7ee
commit 6f9989393f
1 changed files with 3 additions and 0 deletions

View File

@ -66,6 +66,9 @@ function clear()
// clear properties
const properties = document.getElementById('properties');
properties.innerHTML = null;
// clear attachments
const attachments = document.getElementById('attachments');
attachments.innerHTML = null;
}
function select()