Add language to records page

This commit is contained in:
Yang Luo
2024-03-08 23:03:30 +08:00
parent 0d5f49e40a
commit f5bcd00652
4 changed files with 19 additions and 4 deletions

View File

@ -139,10 +139,18 @@ class RecordListPage extends BaseListPage {
title: i18next.t("general:Request URI"),
dataIndex: "requestUri",
key: "requestUri",
// width: '300px',
// width: "300px",
sorter: true,
...this.getColumnSearchProps("requestUri"),
},
{
title: i18next.t("user:Language"),
dataIndex: "language",
key: "language",
width: "90px",
sorter: true,
...this.getColumnSearchProps("language"),
},
{
title: i18next.t("general:Action"),
dataIndex: "action",