From 05a20bea23026c73ef31c1920c0ffecf46df6169 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 14 Aug 2023 13:01:50 +0300 Subject: [PATCH] increase max limit in inline emoji modal from 25 to 50 --- files/assets/js/emoji_modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/assets/js/emoji_modal.js b/files/assets/js/emoji_modal.js index 4399f40b4..8a56b0d65 100644 --- a/files/assets/js/emoji_modal.js +++ b/files/assets/js/emoji_modal.js @@ -386,7 +386,7 @@ function populate_speed_emoji_modal(results, textbox) emoji_index = 0; speed_carot_modal.innerHTML = ""; - const MAXXX = 25; + const MAXXX = 50; // Not sure why the results is a Set... but oh well let i = 0; for (let emoji of results)