0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-09-27 23:20:24 +09:00

Show nothing when nothing playing

This commit is contained in:
yude 2021-05-25 16:47:04 +09:00
parent 6caa13923f
commit e2db2de68b
Signed by: yude
GPG Key ID: EB0FE5D925C4A968
3 changed files with 3 additions and 5 deletions

View File

@ -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}}"
}

View File

@ -2,6 +2,5 @@
"footer": "このページは MIT License の下でライセンスされています。",
"source": "ソースコード",
"tos": "yude.jp サービス利用規約",
"yes_playing": "{{playing}} をプレイ中",
"no_playing": "何もプレイしていません"
"yes_playing": "{{playing}} をプレイ中"
}

View File

@ -20,7 +20,7 @@ const App = () => {
if (playing){
return <p>{yes_playing}</p>
}else{
return <p>{no_playing}</p>
return <p>&#32;</p>
}
};