I N F I N I T Y
This commit is contained in:
parent
f56a649258
commit
8da56be409
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "sprintpadawan",
|
"name": "sprintpadawan",
|
||||||
"version": "1.2.6",
|
"version": "1.2.7",
|
||||||
"description": "Plan. Sprint. Repeat.",
|
"description": "Plan. Sprint. Repeat.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -48,7 +48,7 @@ const Stats = () => {
|
||||||
<div className="stat-title">Users</div>
|
<div className="stat-title">Users</div>
|
||||||
<div className="stat-value">
|
<div className="stat-value">
|
||||||
{usersCountLoading || usersCountFetching ? (
|
{usersCountLoading || usersCountFetching ? (
|
||||||
<span className="loading loading-dots loading-lg"></span>
|
<span className="loading loading-infinity loading-lg"></span>
|
||||||
) : (
|
) : (
|
||||||
<>{usersCount ? usersCount : "0"}</>
|
<>{usersCount ? usersCount : "0"}</>
|
||||||
)}
|
)}
|
||||||
|
@ -59,7 +59,7 @@ const Stats = () => {
|
||||||
<div className="stat-title">Rooms</div>
|
<div className="stat-title">Rooms</div>
|
||||||
<div className="stat-value">
|
<div className="stat-value">
|
||||||
{roomsCountLoading || roomsCountFetching ? (
|
{roomsCountLoading || roomsCountFetching ? (
|
||||||
<span className="loading loading-dots loading-lg"></span>
|
<span className="loading loading-infinity loading-lg"></span>
|
||||||
) : (
|
) : (
|
||||||
<>{roomsCount ? roomsCount : "0"}</>
|
<>{roomsCount ? roomsCount : "0"}</>
|
||||||
)}
|
)}
|
||||||
|
@ -70,7 +70,7 @@ const Stats = () => {
|
||||||
<div className="stat-title">Votes</div>
|
<div className="stat-title">Votes</div>
|
||||||
<div className="stat-value">
|
<div className="stat-value">
|
||||||
{votesCountLoading || votesCountFetching ? (
|
{votesCountLoading || votesCountFetching ? (
|
||||||
<span className="loading loading-dots loading-lg"></span>
|
<span className="loading loading-infinity loading-lg"></span>
|
||||||
) : (
|
) : (
|
||||||
<>{votesCount ? votesCount : "0"}</>
|
<>{votesCount ? votesCount : "0"}</>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Add table
Reference in a new issue