@@ -86,19 +86,28 @@ async function addUserInfo (uok: UsernameOrKaid): Promise<void> {
86
86
if ( ! data . hasOwnProperty ( "discussion_banned" ) ) {
87
87
throw new Error ( "Error loading ban information." ) ;
88
88
} else {
89
- let bannedHTML = `<tr><td class="user-statistics-label">Banned</td>` ;
89
+ const bannedTag = document . createElement ( "tr" ) ;
90
+ const bannedLabel = document . createElement ( "td" ) ;
91
+ bannedLabel . className = "user-statistics-label" ;
92
+ bannedLabel . textContent = "Banned" ;
93
+ bannedTag . appendChild ( bannedLabel ) ;
94
+
95
+ const bannedOutput = document . createElement ( "td" ) ;
90
96
91
97
if ( data . discussion_banned === false ) {
92
- bannedHTML += `<td>No</td>` ;
98
+ bannedOutput . textContent = "No" ;
99
+ bannedTag . appendChild ( bannedTag ) ;
93
100
} else if ( data . discussion_banned === true ) {
94
- bannedHTML += `<td style="color: red">Discussion banned</td>` ;
101
+ bannedOutput . style . color = "red" ;
102
+ bannedOutput . textContent = "Discussion banned" ;
103
+ bannedTag . appendChild ( bannedTag ) ;
95
104
} else {
96
105
throw new Error ( "Error loading ban information." ) ;
97
106
}
98
107
99
108
const lastTR = table . querySelector ( "tr:last-of-type" ) ;
100
109
if ( ! lastTR ) { throw new Error ( "Table has no tr" ) ; }
101
- lastTR . outerHTML = bannedHTML + `</tr>` + lastTR . outerHTML ;
110
+ table . insertBefore ( bannedTag , lastTR ) ;
102
111
}
103
112
} ) ;
104
113
}
0 commit comments