修复flot.ToString的BUg

This commit is contained in:
2024-12-23 12:08:03 +08:00
parent 2f87fe0cd9
commit 7b56590b57
3 changed files with 7 additions and 3 deletions

View File

@ -107,7 +107,7 @@ func (f Float) ToString() StringResult {
}
}
return StringResult{
Value: fmt.Sprintf("%v", floatVal),
Value: fmt.Sprintf("%v", floatVal.Value),
Err: nil,
}
}