mirror of
https://github.com/yude-jp/yude.jp
synced 2025-04-05 14:47:27 +09:00
Show nothing when nothing playing
This commit is contained in:
parent
6caa13923f
commit
e2db2de68b
@ -2,6 +2,5 @@
|
|||||||
"footer": "This page is licensed under the MIT License.",
|
"footer": "This page is licensed under the MIT License.",
|
||||||
"source": "Source code",
|
"source": "Source code",
|
||||||
"tos": "yude.jp Terms of Service",
|
"tos": "yude.jp Terms of Service",
|
||||||
"yes_playing": "Playing {{playing}}",
|
"yes_playing": "Playing {{playing}}"
|
||||||
"no_playing": "Nothing playing"
|
|
||||||
}
|
}
|
@ -2,6 +2,5 @@
|
|||||||
"footer": "このページは MIT License の下でライセンスされています。",
|
"footer": "このページは MIT License の下でライセンスされています。",
|
||||||
"source": "ソースコード",
|
"source": "ソースコード",
|
||||||
"tos": "yude.jp サービス利用規約",
|
"tos": "yude.jp サービス利用規約",
|
||||||
"yes_playing": "{{playing}} をプレイ中",
|
"yes_playing": "{{playing}} をプレイ中"
|
||||||
"no_playing": "何もプレイしていません"
|
|
||||||
}
|
}
|
@ -20,7 +20,7 @@ const App = () => {
|
|||||||
if (playing){
|
if (playing){
|
||||||
return <p>{yes_playing}</p>
|
return <p>{yes_playing}</p>
|
||||||
}else{
|
}else{
|
||||||
return <p>{no_playing}</p>
|
return <p> </p>
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user