diff --git a/public/css/st-tailwind.css b/public/css/st-tailwind.css index 5f5dbcb1a..37dc2f27d 100644 --- a/public/css/st-tailwind.css +++ b/public/css/st-tailwind.css @@ -103,6 +103,10 @@ align-self: start; } +.gap3px { + gap: 3px !important; +} + .gap5px { gap: 5px !important; } @@ -447,4 +451,4 @@ textarea:disabled { .opacity1 { opacity: 1 !important; -} \ No newline at end of file +} diff --git a/public/index.html b/public/index.html index 7d2e8f22e..674256ddf 100644 --- a/public/index.html +++ b/public/index.html @@ -2743,7 +2743,7 @@

-
+
diff --git a/public/scripts/world-info.js b/public/scripts/world-info.js index f9e94effb..386be3685 100644 --- a/public/scripts/world-info.js +++ b/public/scripts/world-info.js @@ -2006,6 +2006,10 @@ jQuery(() => { worldInfoFilter.setFilterData(FILTER_TYPES.WORLD_INFO_SEARCH, term); }); + $('#world_refresh').on('click', () => { + updateEditor(navigation_option.previous); + }); + $('#world_info_sort_order').on('change', function(e) { if (e.target instanceof HTMLOptionElement) { localStorage.setItem(SORT_ORDER_KEY, e.target.value);