Skip to content

Commit 3d34cd7

Browse files
committed
fix: typo in methods name
1 parent b131f31 commit 3d34cd7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/main/default/lwc/eventFilters/eventFilters.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default class EventFilters extends LightningElement {
2828
this.afterTime = yesterday.toISOString();
2929
}
3030

31-
nofifyFilterChange() {
31+
notifyFilterChange() {
3232
let payload = this.payload ? this.payload.trim() : undefined;
3333
if (payload && payload.length === 0) {
3434
payload = undefined;
@@ -62,42 +62,42 @@ export default class EventFilters extends LightningElement {
6262
this.hasAfterTime = false;
6363
this.beforeTime = undefined;
6464
this.afterTime = undefined;
65-
this.nofifyFilterChange();
65+
this.notifyFilterChange();
6666
}
6767

6868
handleChannelChange(event) {
6969
this.channel = event.detail.value;
70-
this.nofifyFilterChange();
70+
this.notifyFilterChange();
7171
}
7272

7373
handlePayloadChange(event) {
7474
this.payload = event.detail.value;
75-
this.nofifyFilterChange();
75+
this.notifyFilterChange();
7676
}
7777

7878
handleIsCaseSensitiveChange(event) {
7979
this.isCaseSensitive = event.target.checked;
80-
this.nofifyFilterChange();
80+
this.notifyFilterChange();
8181
}
8282

8383
handleAfterTimeToggle(event) {
8484
this.hasAfterTime = event.target.checked;
85-
this.nofifyFilterChange();
85+
this.notifyFilterChange();
8686
}
8787

8888
handleBeforeTimeToggle(event) {
8989
this.hasBeforeTime = event.target.checked;
90-
this.nofifyFilterChange();
90+
this.notifyFilterChange();
9191
}
9292

9393
handleAfterTimeChange(event) {
9494
this.afterTime = event.detail.value;
95-
this.nofifyFilterChange();
95+
this.notifyFilterChange();
9696
}
9797

9898
handleBeforeTimeChange(event) {
9999
this.beforeTime = event.detail.value;
100-
this.nofifyFilterChange();
100+
this.notifyFilterChange();
101101
}
102102

103103
get afterTimeDisabled() {

0 commit comments

Comments
 (0)