Skip to content

Commit

Permalink
fix: typo in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
radko93 authored and arielsvg committed Jun 15, 2020
1 parent 230b0d3 commit 0928e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/views/notes/notes_view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ class NotesViewCtrl extends PureViewCtrl {
}

private async reloadNotes() {
this.reloadNotesPromise = this.performPeloadNotes();
this.reloadNotesPromise = this.performReloadNotes();
return this.reloadNotesPromise;
}

Expand Down Expand Up @@ -326,7 +326,7 @@ class NotesViewCtrl extends PureViewCtrl {
)
}

private async performPeloadNotes() {
private async performReloadNotes() {
const tag = this.appState.selectedTag!;
if (!tag) {
return;
Expand Down

0 comments on commit 0928e39

Please sign in to comment.