fix: preserve audit log default sorting across pagination (#161)
* fix: preserve audit log default sorting across pagination * chore: update release notes
This commit is contained in:
parent
6c9e8d28c7
commit
aa67bf7c80
|
@ -21,6 +21,7 @@ Information about release notes of INFINI Console is provided here.
|
||||||
- Fixed the error of obtaining suggestions of field's value in discover (#151)
|
- Fixed the error of obtaining suggestions of field's value in discover (#151)
|
||||||
- Fixed the wrong display of heatmap's data in alerting message (#157)
|
- Fixed the wrong display of heatmap's data in alerting message (#157)
|
||||||
- Fixed Devtools `_sql` support for elasticsearch 6.x (#158)
|
- Fixed Devtools `_sql` support for elasticsearch 6.x (#158)
|
||||||
|
- Fixed audit log default sorting across pagination (#161)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
- Update agent config with cluster name (#148)
|
- Update agent config with cluster name (#148)
|
||||||
|
|
|
@ -21,6 +21,7 @@ title: "版本历史"
|
||||||
- 修复数据探索中获取字段值建议的错误 (#151)
|
- 修复数据探索中获取字段值建议的错误 (#151)
|
||||||
- 修复告警消息热图数据显示错误的问题 (#157)
|
- 修复告警消息热图数据显示错误的问题 (#157)
|
||||||
- 修复开发工具 `_sql` 查询支撑 Elasticsearch 6.x 版本 (#158)
|
- 修复开发工具 `_sql` 查询支撑 Elasticsearch 6.x 版本 (#158)
|
||||||
|
- 修复审计日志默认排序翻页之后丢失的问题 (#161)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
- 优化下发给 Agent 的配置,增加集群名称 (#148)
|
- 优化下发给 Agent 的配置,增加集群名称 (#148)
|
||||||
|
|
|
@ -69,6 +69,7 @@ export default (props) => {
|
||||||
}),
|
}),
|
||||||
key: "timestamp",
|
key: "timestamp",
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
defaultSortOrder: 'descend',
|
||||||
render: (text, record) => {
|
render: (text, record) => {
|
||||||
return formatUtcTimeToLocal(record.timestamp);
|
return formatUtcTimeToLocal(record.timestamp);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue