diff --git a/frontend/src/components/pc/admin/bot/BotCard.jsx b/frontend/src/components/pc/admin/bot/BotCard.jsx index 01d4760..f7ad509 100644 --- a/frontend/src/components/pc/admin/bot/BotCard.jsx +++ b/frontend/src/components/pc/admin/bot/BotCard.jsx @@ -3,7 +3,7 @@ */ import { memo } from 'react'; import { motion } from 'framer-motion'; -import { Play, Square, RefreshCw, Download } from 'lucide-react'; +import { Play, Square, RefreshCw, RotateCcw, Pencil } from 'lucide-react'; // X 아이콘 컴포넌트 export const XIcon = ({ size = 20, fill = 'currentColor' }) => ( @@ -195,7 +195,7 @@ export const BotMiniCard = memo(function BotMiniCard({ }); /** - * 테이블 행 봇 (X용) + * 테이블 행 봇 */ export const BotTableRow = memo(function BotTableRow({ bot, @@ -205,6 +205,7 @@ export const BotTableRow = memo(function BotTableRow({ statusInfo, onSync, onToggle, + onEdit, onAnimationComplete, formatTime, formatInterval, @@ -220,7 +221,7 @@ export const BotTableRow = memo(function BotTableRow({
- {bot.name} + {bot.name}
@@ -249,9 +250,18 @@ export const BotTableRow = memo(function BotTableRow({ {syncing === bot.id ? ( ) : ( - + )} + {bot.type === 'youtube' && onEdit && ( + + )}