Coffee journaling on ATProto (alpha) alpha.arabica.social
coffee
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: exclude closed bags from dropdown correctly in js

+4 -1
+4 -1
static/js/dropdown-manager.js
··· 103 103 placeholderOption.textContent = "Select a bean..."; 104 104 beanSelect.appendChild(placeholderOption); 105 105 106 - // Add bean options 106 + // Add bean options (filter out closed bags) 107 107 this.beans.forEach((bean) => { 108 + // Skip closed bags - they shouldn't appear in brew form dropdown 109 + if (bean.Closed || bean.closed) return; 110 + 108 111 const option = document.createElement("option"); 109 112 option.value = bean.rkey || bean.RKey; 110 113 const roasterName = bean.Roaster?.Name || bean.roaster?.name || "";