diff --git a/multiplayer_crosswords/webui/clue_area.js b/multiplayer_crosswords/webui/clue_area.js index fd2ce4a..aff5db3 100644 --- a/multiplayer_crosswords/webui/clue_area.js +++ b/multiplayer_crosswords/webui/clue_area.js @@ -388,7 +388,7 @@ export class ClueArea extends LitElement {
${currentClue ? html`
- ${currentClue.number}. ${currentClue.direction} + ${currentClue.direction === 'across' ? '▶' : '▼'} ${currentClue.number}
${currentClue.text}
` : html` @@ -396,7 +396,7 @@ export class ClueArea extends LitElement { `}
-
Show all clues:
+
Clues:
+
+ +
+ + ${this._savedSessions.length > 0 ? html` +
+

Recent Sessions

+
+ ${this._savedSessions.map(session => html` +
+
+ ${session.id.substring(0, 8)}... + ${this._formatTimestamp(session.timestamp)} + ${session.language ? html`${session.language.toUpperCase()}` : ''} +
+
+ + +
+
+ `)} +
+ +
+ ` : ''} +
- 📋 Data & Privacy + ▶ 📋 Data Usage for the Multiplayer functionality