Skip to content

Commit

Permalink
[my-tasks] fix sorting reactivity
Browse files Browse the repository at this point in the history
Related to GitHub issue cgwire#1540
  • Loading branch information
NicoPennec committed Oct 28, 2024
1 parent af73a60 commit b9c3e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pages/MyChecks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export default {
const isName = this.currentSort === 'entity_name'
const isPriority = this.currentSort === 'priority'
const isDueDate = this.currentSort === 'due_date'
const tasks = this.filteredTasks
const tasks = [...this.filteredTasks]
if (isName) {
return tasks.sort(
firstBy('project_name')
Expand Down

0 comments on commit b9c3e90

Please sign in to comment.