0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 23:36:01 +09:00

Fix syntax

This commit is contained in:
yude 2021-06-02 08:23:02 +09:00
parent cb460b9b7f
commit 68679ca4e8
Signed by: yude
GPG Key ID: EB0FE5D925C4A968

View File

@ -35,7 +35,7 @@ export default function Minecraft(props) {
const offline = t('minecraft:offline')
const loading = t('minecraft:loading')
return (
<p className="text-center">
<div className="text-center">
{(() => {
if (status == true) {
if (player == undefined || player == 0) {
@ -48,6 +48,7 @@ export default function Minecraft(props) {
return <span>{loading}</span>
}
})()}
{(() => {
if (data.players && data.players.list){
var list = [];
@ -56,12 +57,12 @@ export default function Minecraft(props) {
url.push('https://mc-heads.net/avatar/' + data.players.list[i])
}
for (var i in url){
list.push(<Image src={url[i]} className="inline" height="50" width="50" />)
list.push(<Image src={url[i]} key={i} className="inline" height="50" width="50" />)
}
return <div>{list}</div>
}
})()}
</p>
</div>
)
}
}