mirror of
https://github.com/yude-jp/yude.jp
synced 2024-12-22 12:10:11 +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.",
|
||||
"source": "Source code",
|
||||
"tos": "yude.jp Terms of Service",
|
||||
"yes_playing": "Playing {{playing}}",
|
||||
"no_playing": "Nothing playing"
|
||||
"yes_playing": "Playing {{playing}}"
|
||||
}
|
@ -2,6 +2,5 @@
|
||||
"footer": "このページは MIT License の下でライセンスされています。",
|
||||
"source": "ソースコード",
|
||||
"tos": "yude.jp サービス利用規約",
|
||||
"yes_playing": "{{playing}} をプレイ中",
|
||||
"no_playing": "何もプレイしていません"
|
||||
"yes_playing": "{{playing}} をプレイ中"
|
||||
}
|
@ -20,7 +20,7 @@ const App = () => {
|
||||
if (playing){
|
||||
return <p>{yes_playing}</p>
|
||||
}else{
|
||||
return <p>{no_playing}</p>
|
||||
return <p> </p>
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user