[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
src
/
admin
/
ui
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 Menu.js
3,962 B
SET
[ EDIT ]
|
[ DEL ]
📄 Pagination.js
1,949 B
SET
[ EDIT ]
|
[ DEL ]
📄 StatCard.js
508 B
SET
[ EDIT ]
|
[ DEL ]
📄 Table.js
2,286 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: StatCard.js
const { Card, CardBody } = wp.components; import Loading from "@/admin/settings/components/Loading"; export default ({ loading, title, value, label }) => { if (loading) { return ( <Card> <CardBody> <Loading /> </CardBody> </Card> ); } return ( <Card className="presto-player__stat-card"> <CardBody> <div className="presto-subtitle">{title}</div> <h1>{value}</h1> <div>{label}</div> </CardBody> </Card> ); };