From 0928e3944cffda354ca96255f3e7a46aee15f051 Mon Sep 17 00:00:00 2001 From: Radek Czemerys <7029942+radko93@users.noreply.github.com> Date: Fri, 12 Jun 2020 13:01:57 +0200 Subject: [PATCH] fix: typo in function name --- app/assets/javascripts/views/notes/notes_view.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/views/notes/notes_view.ts b/app/assets/javascripts/views/notes/notes_view.ts index bdb4a5245..8bc4d4886 100644 --- a/app/assets/javascripts/views/notes/notes_view.ts +++ b/app/assets/javascripts/views/notes/notes_view.ts @@ -296,7 +296,7 @@ class NotesViewCtrl extends PureViewCtrl { } private async reloadNotes() { - this.reloadNotesPromise = this.performPeloadNotes(); + this.reloadNotesPromise = this.performReloadNotes(); return this.reloadNotesPromise; } @@ -326,7 +326,7 @@ class NotesViewCtrl extends PureViewCtrl { ) } - private async performPeloadNotes() { + private async performReloadNotes() { const tag = this.appState.selectedTag!; if (!tag) { return;