Gitlab Community Edition Instance

Skip to content
Snippets Groups Projects

Resolve "Sort updated comments chronoligically"

Merged Dominik Seeger requested to merge 167-sort-updated-comments-chronoligically into master
4 files
+ 48
9
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -171,6 +171,7 @@ export default {
}, 5e3)
},
getSortedComments (lineNo) {
if (!this.origFeedback || (!this.origFeedback && !this.origFeedback[lineNo])) return new Array()
let feedback = [...this.origFeedback[lineNo]]
return feedback.sort((a, b) => {
Loading