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:
silenceqi 2025-02-21 16:40:07 +08:00 committed by GitHub
parent 6c9e8d28c7
commit aa67bf7c80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 1 deletions

View File

@ -20,7 +20,8 @@ Information about release notes of INFINI Console is provided here.
- Fixed empty host when setup step finishes (#147) - Fixed empty host when setup step finishes (#147)
- 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)

View File

@ -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)

View File

@ -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);
}, },