# Quick Fix Guide - v1.1.5 to v1.2.0 **Time Required:** 30 minutes **Difficulty:** Easy **Impact:** Critical bugs fixed --- ## 🎯 Two Bugs to Fix ### Bug #1: Div Display Pagination (CRITICAL) **File:** `/assets/public.js` **Lines:** 137-179 **Time:** 15 minutes ### Bug #2: Card Display Colors (MINOR) **File:** `/assets/public.js` **Lines:** 307-308 **Time:** 5 minutes --- ## 🔧 Bug #1 Fix: Div Display Pagination ### Current Code (BROKEN) ```javascript }else if(res.settings.display == 'div') { $.each(res.rows, function(index, item) { resultData = item; var header_color = res.settings.header; var value_color = res.settings.value; $.each(item, function(q,r){ var id = q.replace(' ', '_').replace('.', '_').toLowerCase(); var prefix = ''; var type = ''; var button_text = ''; var hidden = 'no'; $.each(res.output, function(o,p){ if(q == p.key){ prefix = p.prefix; type = p.type; button_text = p.button_text; if('hide' in p){ hidden = p.hide; } } }); if(hidden == 'yes'){ return; } if(type == 'link_button'){ r = ''+button_text+''; }else if(type == 'whatsapp_button'){ r = ''+button_text+''; } // BUG: Container created per field (WRONG!) if(index == 0){ resultDiv += '