Linter fix
This commit is contained in:
parent
6516e621b0
commit
beb0d1ef0a
2 changed files with 4 additions and 4 deletions
|
@ -117,10 +117,10 @@ class LayoutManager {
|
|||
HtmlUtils.getElementByIdOrFail<HTMLDivElement>('chat-mode').style.display = 'flex';
|
||||
}
|
||||
|
||||
for (let div of this.importantDivs.values()) {
|
||||
for (const div of this.importantDivs.values()) {
|
||||
this.positionDiv(div, DivImportance.Important);
|
||||
}
|
||||
for (let div of this.normalDivs.values()) {
|
||||
for (const div of this.normalDivs.values()) {
|
||||
this.positionDiv(div, DivImportance.Normal);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue