From 2dc942afe171f2b4fcf23fbf94e8d2058b97ae95 Mon Sep 17 00:00:00 2001 From: Haley Burns Date: Thu, 22 Jan 2026 12:22:33 -0800 Subject: [PATCH] Add max value to streaming bitrate textfield Max limit based upon int32 max of server after 1e6 multiplication --- src/apps/dashboard/routes/playback/streaming.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/dashboard/routes/playback/streaming.tsx b/src/apps/dashboard/routes/playback/streaming.tsx index 51c6962a4..ff4eca5f6 100644 --- a/src/apps/dashboard/routes/playback/streaming.tsx +++ b/src/apps/dashboard/routes/playback/streaming.tsx @@ -77,6 +77,7 @@ export const Component = () => { slotProps={{ htmlInput: { min: 0, + max: 2147.25, step: 0.25 } }}