Skip to content

Commit

Permalink
update: use User-Agent uniformly
Browse files Browse the repository at this point in the history
  • Loading branch information
love98ooo committed Aug 10, 2024
1 parent 576f9e0 commit eed9ff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/RecordEditPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class RecordEditPage extends React.Component {
</Row>
<Row style={{marginTop: "10px"}} >
<Col style={{marginTop: "5px"}} span={2}>
{i18next.t("general:UserAgent")}:
{i18next.t("general:User-Agent")}:
</Col>
<Col span={22} >
<Input value={this.state.record.userAgent} onChange={e => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/RecordListPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class RecordListPage extends BaseListPage {
sorter: (a, b) => a.clientIp.localeCompare(b.clientIp),
},
{
title: i18next.t("general:User agent"),
title: i18next.t("general:User-Agent"),
dataIndex: "userAgent",
key: "userAgent",
width: "240px",
Expand Down

0 comments on commit eed9ff2

Please sign in to comment.