Linter fix

This commit is contained in:
David Négrier 2020-08-17 16:18:39 +02:00
parent 6516e621b0
commit beb0d1ef0a
2 changed files with 4 additions and 4 deletions

View file

@ -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);
}
}