slack status without the slack status.zzstoatzz.io/
quickslice

fix: Fix critical emoji picker bug - undefined function

- Replace undefined loadCustomEmojis with ensureCustomEmojis
- Remove unnecessary stopPropagation that was breaking modal

+1 -8
+1 -8
templates/status.html
··· 2154 2154 }); 2155 2155 } 2156 2156 2157 - loadCustomEmojis().then(() => { 2157 + ensureCustomEmojis({ showLoading: false, showErrors: false }).then(() => { 2158 2158 loadEmojiCategory('frequent'); 2159 2159 }); 2160 2160 ··· 2215 2215 if (e.target === emojiPickerOverlay) { 2216 2216 closeEmojiPicker(); 2217 2217 } 2218 - }); 2219 - } 2220 - 2221 - // Prevent clicks inside the picker from bubbling to the overlay 2222 - if (emojiPicker) { 2223 - emojiPicker.addEventListener('click', (e) => { 2224 - e.stopPropagation(); 2225 2218 }); 2226 2219 } 2227 2220