diff --git a/src/App.vue b/src/App.vue index 6c059f7..60ce381 100644 --- a/src/App.vue +++ b/src/App.vue @@ -58,7 +58,7 @@ export default { localStorage.setItem("sortColumn", col); this.sortColumn = col; - this.filteredTopics.sort(function (a, b) { + this.topics.sort(function (a, b) { if (a[col] > b[col]) { return ascending ? -1 : 1; } else if (a[col] < b[col]) {