UI移动端日志修复

This commit is contained in:
zhbaor 2024-11-28 10:53:47 +08:00
parent 5f344f40a4
commit d0e08bd714
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -15,7 +15,7 @@ export const useMowerStore = defineStore('mower', () => {
const result = []
for (const i of log_lines.value) {
if (i.match(num_reg)) {
result.push(i.substring(23))
result.push(i.substring(15))
} else {
result.push(i)
}