This is an automated email from the ASF dual-hosted git repository. roryqi pushed a commit to branch branch-0.10 in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
commit 850cd8ab3fd828aac88214648118194fb529fe49 Author: maobaolong <[email protected]> AuthorDate: Wed Nov 27 10:17:27 2024 +0800 [MINOR] improvement(dashboard): Support sort application info by partition num ### What changes were proposed in this pull request? Help to find out the most partition num from application page. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Locally --- dashboard/src/main/webapp/src/pages/ApplicationPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/main/webapp/src/pages/ApplicationPage.vue b/dashboard/src/main/webapp/src/pages/ApplicationPage.vue index 85ce6aac4..49fd7cbca 100644 --- a/dashboard/src/main/webapp/src/pages/ApplicationPage.vue +++ b/dashboard/src/main/webapp/src/pages/ApplicationPage.vue @@ -86,7 +86,7 @@ </div> </template> </el-table-column> - <el-table-column prop="partitionNum" label="PartitionNum" min-width="180" /> + <el-table-column prop="partitionNum" label="PartitionNum" min-width="180" sortable /> <el-table-column prop="memorySize" label="MemorySize"
