@@ -59,7 +59,7 @@ async function setupChangelog() {
59
59
60
60
const log = document . newElement ( { type : "div" , class : "version-log" } ) ;
61
61
const heading = document . newElement ( { type : "div" , class : "title" , text : getTitle ( ) } ) ;
62
- const icon = document . newElement ( { type : "i" , class : "fas fa-chevron-down" } ) ;
62
+ const icon = document . newElement ( { type : "i" , class : "fa-solid fa-chevron-down" } ) ;
63
63
heading . appendChild ( icon ) ;
64
64
log . appendChild ( heading ) ;
65
65
@@ -744,7 +744,7 @@ async function setupPreferences(requireCleanup) {
744
744
const deleteIcon = document . newElement ( {
745
745
type : "button" ,
746
746
class : "remove-icon-wrap" ,
747
- children : [ document . newElement ( { type : "i" , class : "remove-icon fas fa-trash-alt " } ) ] ,
747
+ children : [ document . newElement ( { type : "i" , class : "remove-icon fa-solid fa-trash-can " } ) ] ,
748
748
} ) ;
749
749
const newRow = document . newElement ( {
750
750
type : "li" ,
@@ -764,7 +764,7 @@ async function setupPreferences(requireCleanup) {
764
764
const deleteIcon = document . newElement ( {
765
765
type : "button" ,
766
766
class : "remove-icon-wrap" ,
767
- children : [ document . newElement ( { type : "i" , class : "remove-icon fas fa-trash-alt " } ) ] ,
767
+ children : [ document . newElement ( { type : "i" , class : "remove-icon fa-solid fa-trash-can " } ) ] ,
768
768
} ) ;
769
769
const newRow = document . newElement ( {
770
770
type : "li" ,
@@ -857,15 +857,15 @@ async function setupPreferences(requireCleanup) {
857
857
document . newElement ( {
858
858
type : "button" ,
859
859
class : "remove-icon-wrap" ,
860
- children : [ document . newElement ( { type : "i" , class : "remove-icon fas fa-trash-alt " } ) ] ,
860
+ children : [ document . newElement ( { type : "i" , class : "remove-icon fa-solid fa-trash-can " } ) ] ,
861
861
events : {
862
862
click : ( ) => newRow . remove ( ) ,
863
863
} ,
864
864
} ) ,
865
865
document . newElement ( {
866
866
type : "div" ,
867
867
class : "move-icon-wrap" ,
868
- children : [ document . newElement ( { type : "i" , class : "move-icon fas fa-bars" } ) ] ,
868
+ children : [ document . newElement ( { type : "i" , class : "move-icon fa-solid fa-bars" } ) ] ,
869
869
} ) ,
870
870
] ,
871
871
} ) ;
@@ -877,7 +877,7 @@ async function setupPreferences(requireCleanup) {
877
877
const deleteIcon = document . newElement ( {
878
878
type : "button" ,
879
879
class : "remove-icon-wrap" ,
880
- children : [ document . newElement ( { type : "i" , class : "remove-icon fas fa-trash-alt " } ) ] ,
880
+ children : [ document . newElement ( { type : "i" , class : "remove-icon fa-solid fa-trash-can " } ) ] ,
881
881
} ) ;
882
882
const newRow = document . newElement ( {
883
883
type : "li" ,
@@ -894,7 +894,7 @@ async function setupPreferences(requireCleanup) {
894
894
const deleteIcon = document . newElement ( {
895
895
type : "button" ,
896
896
class : "remove-icon-wrap" ,
897
- children : [ document . newElement ( { type : "i" , class : "remove-icon fas fa-trash-alt " } ) ] ,
897
+ children : [ document . newElement ( { type : "i" , class : "remove-icon fa-solid fa-trash-can " } ) ] ,
898
898
} ) ;
899
899
const newRow = document . newElement ( {
900
900
type : "li" ,
0 commit comments