Jake Vanderwerf
2026-02-11 3b5abc4ab44fb899b92ea0e40e0719454c057f52
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() {