Skip to content

Commit

Permalink
hotfix 読点でエラーが出る問題を修正 to 0.3.1 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Aug 13, 2021
1 parent ebc84da commit 4718575
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "voicevox",
"version": "0.3.0",
"version": "0.3.1",
"author": "Hiroshiba Kazuyuki",
"private": true,
"engines": {
Expand Down
5 changes: 5 additions & 0 deletions public/updateInfos.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
[
{
"version": "0.3.1",
"descriptions": ["読点でエラーが出る問題を修正"],
"contributors": []
},
{
"version": "0.3.0",
"descriptions": [
Expand Down
6 changes: 4 additions & 2 deletions src/components/UpdateInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ export default defineComponent({
}
html += `</ul>`;
html += `<h4>貢献者リスト</h4>`;
html += `<p>${contributors.join(" / ")}</p>`;
if (contributors.length > 0) {
html += `<h4>貢献者リスト</h4>`;
html += `<p>${contributors.join(" / ")}</p>`;
}
}
return html;
Expand Down

0 comments on commit 4718575

Please sign in to comment.