From c1289e38bf6bc3806653641a4be27b3ccc833b46 Mon Sep 17 00:00:00 2001
From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com>
Date: Tue, 2 Sep 2025 13:52:49 +0000
Subject: [PATCH] Update video editing options and improve app stability
Update the `admin.tsx` file to include `episodeNumber` in the `EditVideoDialog` component and modify the genre select options. Also, remove deprecated integrations from the `.replit` file.
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: b8acb3b1-9903-4862-bc2d-326c35e48b18
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/b8acb3b1-9903-4862-bc2d-326c35e48b18/2cCVHe3
---
.replit | 1 -
client/src/pages/admin.tsx | 15 ++++++++-------
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.replit b/.replit
index b6a36ac..c806144 100644
--- a/.replit
+++ b/.replit
@@ -40,4 +40,3 @@ args = "npm run dev"
waitForPort = 5000
[agent]
-integrations = ["javascript_database==1.0.0", "javascript_openai==1.0.0"]
diff --git a/client/src/pages/admin.tsx b/client/src/pages/admin.tsx
index 00d9006..b2ad345 100644
--- a/client/src/pages/admin.tsx
+++ b/client/src/pages/admin.tsx
@@ -224,6 +224,7 @@ function EditVideoDialog({
artist: video.artist || "",
description: video.description,
filename: video.filename || "",
+ episodeNumber: video.episodeNumber || "",
episodeTitle: video.episodeTitle || "",
tags: video.tags || [],
contentType: video.contentType,
@@ -372,20 +373,20 @@ function EditVideoDialog({