(value)
| 439 | } |
| 440 | |
| 441 | function formatSchedulerTime(value) { |
| 442 | if (!value) return '-'; |
| 443 | const date = new Date(value); |
| 444 | if (Number.isNaN(date.getTime())) return '-'; |
| 445 | return date.toLocaleString('zh-CN'); |
| 446 | } |
| 447 | |
| 448 | function renderAutoQuickRefreshRuntime(runtime) { |
| 449 | const info = runtime || {}; |
no outgoing calls
no test coverage detected