@@ -842,30 +842,6 @@ function searchAndHighlight() {
842842 }
843843 queueInfo . appendChild ( voucherElement ) ;
844844
845- const bossElement = document . createElement ( 'div' ) ;
846- bossElement . innerHTML = '<b><u>Boss</u></b>' ;
847- bossElement . style = "font-size: 16px" ;
848-
849- if ( boss ) {
850- const bossContainer = document . createElement ( 'div' ) ;
851- bossContainer . className = 'bossContainer' ;
852-
853- const bossCanvas = document . createElement ( 'canvas' ) ;
854- bossCanvas . width = 34 ;
855- bossCanvas . height = 34 ;
856- renderBoss ( bossCanvas , boss ) ;
857- bossContainer . appendChild ( bossCanvas ) ;
858-
859- const bossNameElement = document . createElement ( 'div' ) ;
860- bossNameElement . textContent = boss ;
861- bossNameElement . classList . add ( 'bossName' ) ;
862- bossContainer . appendChild ( bossNameElement ) ;
863-
864- bossElement . appendChild ( bossContainer ) ;
865- }
866-
867- queueInfo . appendChild ( bossElement ) ;
868-
869845 const tagsElement = document . createElement ( 'div' ) ;
870846 tagsElement . innerHTML = '<b><u>Tags</u></b>' ;
871847 tagsElement . style = "font-size: 16px" ;
@@ -894,6 +870,30 @@ function searchAndHighlight() {
894870 tagsElement . appendChild ( tagsContainer ) ;
895871 queueInfo . appendChild ( tagsElement ) ;
896872
873+ const bossElement = document . createElement ( 'div' ) ;
874+ bossElement . innerHTML = '<b><u>Boss</u></b>' ;
875+ bossElement . style = "font-size: 16px" ;
876+
877+ if ( boss ) {
878+ const bossContainer = document . createElement ( 'div' ) ;
879+ bossContainer . className = 'bossContainer' ;
880+
881+ const bossCanvas = document . createElement ( 'canvas' ) ;
882+ bossCanvas . width = 34 ;
883+ bossCanvas . height = 34 ;
884+ renderBoss ( bossCanvas , boss ) ;
885+ bossContainer . appendChild ( bossCanvas ) ;
886+
887+ const bossNameElement = document . createElement ( 'div' ) ;
888+ bossNameElement . textContent = boss ;
889+ bossNameElement . classList . add ( 'bossName' ) ;
890+ bossContainer . appendChild ( bossNameElement ) ;
891+
892+ bossElement . appendChild ( bossContainer ) ;
893+ }
894+
895+ queueInfo . appendChild ( bossElement ) ;
896+
897897 queueContainer . appendChild ( queueInfo ) ;
898898
899899 const scrollable = document . createElement ( 'div' ) ;
0 commit comments