Skip to content

Commit

Permalink
Enable sort on link count (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
udgover authored Sep 6, 2024
1 parent d858385 commit d1ee43b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/DirectNeighbors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,10 @@ export default {
{ title: "Value", key: "relevant_node.value", maxWidth: "700px", sortable: false },
{ title: "Tags", key: "relevant_node.tags", sortable: false },
{ title: "Description", key: "description", sortable: false },
{ title: "Count", key: "count", sortable: false },
{ title: "Count", key: "count", sortable: true },
{ title: "", key: "controls", sortable: false }
],
sortBy: [{ key: "created", order: "asc" }]
sortBy: [{ key: "modified", order: "desc" }]
};
},
methods: {
Expand Down

0 comments on commit d1ee43b

Please sign in to comment.