Fix updating notes through the edit ui

This commit is contained in:
2025-06-25 15:34:47 +02:00
parent f69c93ba91
commit ff840299d6

View File

@@ -125,6 +125,9 @@ export const SystemView = () => {
if (updatedSignature.scanned !== undefined) {
updateData.scanned = updatedSignature.scanned;
}
if (updatedSignature.note !== undefined) {
updateData.note = updatedSignature.note;
}
console.log('Update data:', updateData);