We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d6f025 commit a70873fCopy full SHA for a70873f
2 files changed
src/views/dashboard/logs/query/TableData.vue
@@ -176,7 +176,7 @@
176
arr.push({
177
dataIndex: tsColumn.value.name,
178
title: tsColumn.value.name,
179
- headerCellStyle: { width: '170px' },
+ headerCellStyle: { width: tsViewStr.value ? '220px' : '170px' },
180
})
181
}
182
src/views/dashboard/logs/query/until.ts
@@ -188,7 +188,7 @@ export type TimeType = keyof typeof TimeTypes
188
export function toDateStr(time: number, multiple: number, format?: string) {
189
// const multiple = TimeTypes[type]
190
const ms = toMs(time, multiple)
191
- return dayjs(ms).format(format || 'MM-DD HH:mm:ss.SSS')
+ return dayjs(ms).format(format || 'YYYY-MM-DD HH:mm:ss.SSS')
192
193
194
const LIMIT_RE = /LIMIT\s+(\d+)/
0 commit comments