xianjingfeng commented on code in PR #1868:
URL:
https://github.com/apache/incubator-uniffle/pull/1868#discussion_r1667858266
##########
dashboard/src/main/webapp/src/pages/serverstatus/ActiveNodeListPage.vue:
##########
@@ -17,31 +17,46 @@
<template>
<div>
- <el-table :data="pageData.tableData" height="550" style="width: 100%">
- <el-table-column prop="id" label="Id" min-width="140" />
- <el-table-column prop="ip" label="IP" min-width="80" />
+ <el-table
+ :data="pageData.tableData"
+ height="550"
+ style="width: 100%"
+ :default-sort="sortColumn"
+ @sort-change="sortChangeEvent"
+ >
+ <el-table-column prop="id" label="Id" min-width="140" :sortable="true" />
+ <el-table-column prop="ip" label="IP" min-width="80" :sortable="true" />
<el-table-column prop="grpcPort" label="GrpcPort" min-width="80" />
<el-table-column prop="nettyPort" label="NettyPort" min-width="80" />
- <el-table-column prop="usedMemory" label="UsedMem" min-width="80"
:formatter="memFormatter" />
+ <el-table-column
+ prop="usedMemory"
+ label="UsedMem"
+ min-width="80"
+ :formatter="memFormatter"
+ :sortable="true"
+ />
<el-table-column
prop="preAllocatedMemory"
- label="PreAllocatedMem"
+ label="Pre-Mem"
Review Comment:
I think the original name is better.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]