2 Commits

Author SHA1 Message Date
David Rodenkirchen b31a7d6944 Add participants page 2026-05-30 11:43:18 +02:00
David Rodenkirchen 64cf89e0bb bump version 2026-05-30 11:25:23 +02:00
3 changed files with 4 additions and 5 deletions
+2 -3
View File
@@ -20,9 +20,8 @@ class SeatPixel(Component):
self.associated_user = await self.seat.user.fetch()
async def on_press(self, _: PointerEvent) -> None:
seat_id = self.seat_id.replace("\n", "")
self.session.navigate_to(f"./seat-info?seat_id={seat_id}")
self.session.navigate_to(f"./seat-info?seat_id={self.seat_id.replace("\n", "")}")
def determine_color(self) -> Color:
if self.seat is not None:
try:
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import annotations
from hashlib import sha256
from _sha2 import sha256
from random import choices
from typing import Any, Optional
+1 -1
View File
@@ -26,7 +26,7 @@ class TransactionRow(Component):
return Rectangle(
content=Row(
Text(
f"{self.transaction_time.strftime('%d.%m.%y')} /",
f"{self.transaction_time.strftime("%d.%m.%y")} /",
justify="left",
font_size=0.8,
margin_left=0.5,