summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-08-10 16:48:22 +0100
committerFilipa Lacerda <filipa@gitlab.com>2017-08-10 16:48:22 +0100
commitd323bb79ebc84751cc0a27e99db7ae1c2ec64fd8 (patch)
tree71ef8b4d6f9c182137e9ac836afbc67a6c7f34de /app/assets/javascripts/notes
parent3008e9956222b8765ec2d7852c61da19a3933c8f (diff)
downloadgitlab-ce-d323bb79ebc84751cc0a27e99db7ae1c2ec64fd8.tar.gz
Change fixtures of old tests
Diffstat (limited to 'app/assets/javascripts/notes')
-rw-r--r--app/assets/javascripts/notes/components/issue_notes_app.vue11
1 files changed, 6 insertions, 5 deletions
diff --git a/app/assets/javascripts/notes/components/issue_notes_app.vue b/app/assets/javascripts/notes/components/issue_notes_app.vue
index 8ea4c33c4e7..77e2ae4dc1f 100644
--- a/app/assets/javascripts/notes/components/issue_notes_app.vue
+++ b/app/assets/javascripts/notes/components/issue_notes_app.vue
@@ -79,16 +79,18 @@
return note.individual_note ? note.notes[0] : note;
},
fetchNotes() {
- this.actionFetchNotes(this.getNotesDataByProp('discussionsPath'))
+ return this.actionFetchNotes(this.getNotesDataByProp('discussionsPath'))
.then(() => {
- this.isLoading = false;
-
// Scroll to note if we have hash fragment in the page URL
this.$nextTick(() => {
this.checkLocationHash();
});
})
- .catch(() => Flash('Something went wrong while fetching issue comments. Please try again.'));
+ .catch(() => Flash('Something went wrong while fetching issue comments. Please try again.'))
+ .then(() => {
+ this.isLoading = false;
+ this.initPolling();
+ });
},
initPolling() {
this.setLastFetchedAt(this.getNotesDataByProp('lastFetchedAt'));
@@ -112,7 +114,6 @@
},
mounted() {
this.fetchNotes();
- this.initPolling();
const parentElement = this.$el.parentElement;
if (parentElement &&