Add method to record.

This commit is contained in:
Gucheng Wang
2021-11-09 23:24:13 +08:00
parent 8d6756fe9a
commit 102e22f2c7
9 changed files with 143 additions and 22 deletions

View File

@ -129,6 +129,13 @@ class RecordListPage extends React.Component {
)
}
},
{
title: i18next.t("general:Method"),
dataIndex: 'method',
key: 'method',
width: '100px',
sorter: (a, b) => a.method.localeCompare(b.method),
},
{
title: i18next.t("general:Request URI"),
dataIndex: 'requestUri',