assets/js/concise/CRUD.js
@@ -350,6 +350,21 @@ }); } } if (event === 'sent-to-queue' && data.field) { const fieldName = data.field.config.name; const itemId = data.field.config.itemID; if (itemId && fieldName && this.changes.has(itemId)) { delete this.changes.get(itemId)[fieldName]; } // Also clear from IndexedDB store this.changesStore.get(itemId).then(stored => { if (stored && stored[fieldName] !== undefined) { delete stored[fieldName]; this.changesStore.save(stored); } }); } }); } initModals() {