Merge pull request 'fix: persist api/worker container memory limit with mem_limit 2g' (#70) from fix/compose-mem-limit into develop
Tests / test (pull_request) Failing after 1s
Tests / lint (pull_request) Failing after 1s
CI/CD Pipeline / Validate Code Quality And Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Lint (push) Has been cancelled
Deploy / Deploy Staging (push) Has been cancelled
Deploy / Build Production Runtime Images (push) Has been cancelled
Deploy / Deploy Production (push) Has been cancelled
Deploy / Production Browser E2E (push) Has been cancelled
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Has been cancelled
CI/CD Pipeline / Frontend Lint (pull_request) Has been cancelled

This commit was merged in pull request #70.
This commit is contained in:
2026-06-28 13:07:29 +08:00
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ const PLANS = [
const Plans: React.FC = () => {
const [subscribing, setSubscribing] = useState(false);
const handleSubscribe = async (planId: string) => {
const handleSubscribe = async (_planId: string) => {
try {
setSubscribing(true);
message.success('订阅成功');
@@ -98,7 +98,7 @@ const Timeline: React.FC<{
clips: EditPlanClipItem[];
totalDuration: number;
}> = ({ clips, totalDuration }) => {
const [scale, setScale] = useState(1);
const tickCount = 10;
const ticks = Array.from({ length: tickCount + 1 }, (_, i) => {
@@ -131,7 +131,7 @@ const Timeline: React.FC<{
<div className="timeline-track pip-track" />
<div className="timeline-track broll-track" />
{clips.map((clip) => (
<TimelineClip key={clip.id} clip={clip} scale={scale} totalDuration={totalDuration} />
<TimelineClip key={clip.id} clip={clip} totalDuration={totalDuration} />
))}
</div>
</div>
@@ -298,7 +298,7 @@ const ProjectGeneration: React.FC = () => {
const handleGenerate = async () => {
await form.validateFields();
try {
const values = form.getFieldsValue();
form.getFieldsValue();
message.success("成片生成任务已创建");
setGenerateOpen(false);
form.resetFields();
@@ -2,7 +2,7 @@
* 项目任务中心 - V21 UI
*/
import React from 'react';
import { Alert, Button, Card, Empty, List, Progress, Space, Tag, Typography } from 'antd';
import { Alert, Button, List, Progress, Space, Tag, Typography } from 'antd';
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
import { useParams } from 'react-router-dom';
import { getProjectTasks, retryProjectTask } from '@/api/tasks';