remove spaces in fraction rendering
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 34s Details

This commit is contained in:
Ladd Hoffman 2024-03-30 15:59:02 -05:00
parent f8e0cbad35
commit 2806eff0bb
1 changed files with 2 additions and 2 deletions

View File

@ -429,8 +429,8 @@ function App() {
{pool.params.bindingPercent.toString()}
%
</td>
<td>{`${pool.params.quorum[0].toString()} / ${pool.params.quorum[1].toString()}`}</td>
<td>{`${pool.params.winRatio[0].toString()} / ${pool.params.winRatio[1].toString()}`}</td>
<td>{`${pool.params.quorum[0].toString()}/${pool.params.quorum[1].toString()}`}</td>
<td>{`${pool.params.winRatio[0].toString()}/${pool.params.winRatio[1].toString()}`}</td>
<td>{pool.params.redistributeLosingStakes.toString()}</td>
<td>{pool.params.duration.toString()}</td>
<td>{new Date(Number(pool.endTime) * 1000).toLocaleString()}</td>