fix: 修复前端队列统计数据不准确的问题
This commit is contained in:
parent
2732be6df4
commit
94bff3f785
|
|
@ -252,20 +252,6 @@ export const ProjectDetails: React.FC = () => {
|
|||
<span className="sm:hidden">素材</span>
|
||||
</div>
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setActiveTab('debug')}
|
||||
className={`py-4 px-1 border-b-2 font-medium text-sm transition-colors whitespace-nowrap ${
|
||||
activeTab === 'debug'
|
||||
? 'border-blue-500 text-blue-600'
|
||||
: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center space-x-2">
|
||||
<Settings className="w-4 h-4" />
|
||||
<span className="hidden sm:inline">调试工具</span>
|
||||
<span className="sm:hidden">调试</span>
|
||||
</div>
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setActiveTab('ai-logs')}
|
||||
className={`py-4 px-1 border-b-2 font-medium text-sm transition-colors whitespace-nowrap ${
|
||||
|
|
@ -341,20 +327,6 @@ export const ProjectDetails: React.FC = () => {
|
|||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* 调试工具选项卡 */}
|
||||
{activeTab === 'debug' && (
|
||||
<div>
|
||||
<div className="mb-4">
|
||||
<h3 className="text-lg font-medium text-gray-900 mb-2">调试工具</h3>
|
||||
<p className="text-sm text-gray-600">
|
||||
用于开发和调试的工具集合,包括FFmpeg测试和系统诊断功能。
|
||||
</p>
|
||||
</div>
|
||||
<FFmpegDebugPanel />
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* AI分析日志选项卡 */}
|
||||
{activeTab === 'ai-logs' && project && (
|
||||
<div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue