Call bind() before accessing elements
This commit is contained in:
parent
5fd3a59406
commit
21b8364f6c
1 changed files with 2 additions and 2 deletions
|
@ -11,11 +11,11 @@ class Popup {
|
||||||
static async init(): Promise<void> {
|
static async init(): Promise<void> {
|
||||||
const preferences: Preferences = await PreferencesRepository.get();
|
const preferences: Preferences = await PreferencesRepository.get();
|
||||||
|
|
||||||
|
this.bind();
|
||||||
|
|
||||||
this.hideLikesCheckbox.checked = preferences.hideLikes;
|
this.hideLikesCheckbox.checked = preferences.hideLikes;
|
||||||
this.hideRepliesCheckbox.checked = preferences.hideReplies;
|
this.hideRepliesCheckbox.checked = preferences.hideReplies;
|
||||||
this.hideRetweetsCheckbox.checked = preferences.hideRetweets;
|
this.hideRetweetsCheckbox.checked = preferences.hideRetweets;
|
||||||
|
|
||||||
this.bind();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bind(): void {
|
static bind(): void {
|
||||||
|
|
Loading…
Add table
Reference in a new issue