aboutsummaryrefslogtreecommitdiff
path: root/src/data.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.js')
-rw-r--r--src/data.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/data.js b/src/data.js
index f1cf7c9..0b0c9ab 100644
--- a/src/data.js
+++ b/src/data.js
@@ -105,8 +105,7 @@ export class Game extends Switch {
const playerState = this.teamOne.render() + "<hr>" + this.teamTwo.render();
const type = blockedState ? `<h5>Reserved</p>` : playerState;
return `<article>
- <h4>Court ${this.id + 1}</h4><hr>
- ${type}
+ <header>Court ${this.id + 1}</header>${type}
</article>`;
}
}