mirror of
https://github.com/praveentcom/openproxy.git
synced 2026-08-20 10:07:14 +02:00
fix(metrics): standardize numeric parsing to Number.parseFloat/parseInt and fix unique_models mapping
Co-authored-by: Genie <genie@cosine.sh>
This commit is contained in:
committed by
Genie
co-authored by
Genie
parent
eeebf1c6e9
commit
946a5a6425
@@ -60,7 +60,7 @@ export default function RecentRequests({ requests }: RecentRequestsProps) {
|
||||
</small>
|
||||
</div>
|
||||
</td>
|
||||
<td style={styles.td}>${parseFloat(req.total_cost).toFixed(4)}</td>
|
||||
<td style={styles.td}>${Number.parseFloat(req.total_cost).toFixed(4)}</td>
|
||||
<td style={styles.td}>{req.response_time}ms</td>
|
||||
<td style={styles.td}>
|
||||
<span
|
||||
|
||||
Reference in New Issue
Block a user