From 63072cd3b0ee82489e156572cb8293c57edf12a1 Mon Sep 17 00:00:00 2001 From: Jason Koch Date: Fri, 10 May 2024 23:07:37 -0700 Subject: [PATCH] feat: allow sort by Name in heapdump Threads view (#281) --- frontend/src/components/heapdump/Threads.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/heapdump/Threads.vue b/frontend/src/components/heapdump/Threads.vue index eda49884..4c151f8d 100644 --- a/frontend/src/components/heapdump/Threads.vue +++ b/frontend/src/components/heapdump/Threads.vue @@ -67,7 +67,8 @@ const columns = [ label: 'Name', width: 130, align: 'right', - property: 'name' + property: 'name', + sortable: true, }, { label: 'Shallow Size',