2
0
فهرست منبع

✨ feat(template): add ID column to template list

- display template ID in the template list table
- set column width to 80px for proper layout
yourname 2 ماه پیش
والد
کامیت
18c9a714a2
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      src/client/member/pages/TemplateList.tsx

+ 6 - 0
src/client/member/pages/TemplateList.tsx

@@ -56,6 +56,12 @@ function TemplateList() {
   });
 
   const columns = [
+    {
+      title: 'ID',
+      dataIndex: 'id',
+      key: 'id',
+      width: 80
+    },
     {
       title: '模板名称',
       dataIndex: 'templateName',