REFACTOR: Separated Navbar and ChatPanel components; Updated VideoPage layout and toggle chat functionality

This commit is contained in:
Chris-1010
2025-02-04 17:43:31 +00:00
parent d472d672bd
commit 595190b0a0
5 changed files with 98 additions and 95 deletions

View File

@@ -58,7 +58,7 @@ def get_past_chat(stream_id: int):
FROM chat
JOIN users ON chat.chatter_id = users.user_id
WHERE stream_id = ?
ORDER BY time_sent DESC
ORDER BY time_sent ASC
LIMIT 50;
""", (stream_id,))