Skip to content

Commit

Permalink
マージ時ミスがあったので修正
Browse files Browse the repository at this point in the history
  • Loading branch information
blaue-fuchs committed Sep 18, 2024
1 parent 1fb4d2f commit c386171
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 95 deletions.
6 changes: 3 additions & 3 deletions examples/messaging/main.mts
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ document.addEventListener('DOMContentLoaded', async () => {
let statsHtml = ''
const statsReportJson: Record<string, unknown>[] = []
for (const [_index, report] of statsReport.entries()) {
// キャプションになる Type を描画する
// キャプションになる Type を表示する
statsHtml += `<h3>Type: ${report.type}</h3><ul>`
// 表示と同構造の JSON も生成する
// 同時に、stats の内容を JSON に変換する
const reportJson: Record<string, unknown> = { id: report.id, type: report.type }
// 子項目の描画と JSON へ追加を行う
// 子項目の表示と JSON へ追加を行う
statsHtml += Object.entries(report)
.map(([key, value]) => {
if (key !== 'type' && key !== 'id') {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@rollup/plugin-replace": "5.0.7",
"@rollup/plugin-typescript": "11.1.6",
"jsdom": "25.0.0",
"rollup": "4.21.3",
"rollup": "4.21.2",
"rollup-plugin-delete": "2.1.0"
}
}
182 changes: 91 additions & 91 deletions pnpm-lock.yaml

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

0 comments on commit c386171

Please sign in to comment.