chore: 添加一些遗漏

This commit is contained in:
amtoaer
2026-04-15 00:36:41 +08:00
parent 58ab98a77a
commit 689c37d527
+1 -9
View File
@@ -6,17 +6,11 @@
import api from '$lib/api';
import SquareArrowOutUpRightIcon from '@lucide/svelte/icons/square-arrow-out-up-right';
import type { ApiError, VideoResponse, UpdateVideoStatusRequest } from '$lib/types';
import {
RotateCcwIcon,
SquarePenIcon,
BrushCleaningIcon,
RefreshCwIcon
} from '@lucide/svelte/icons';
import { RotateCcwIcon, SquarePenIcon, BrushCleaningIcon } from '@lucide/svelte/icons';
import { setBreadcrumb } from '$lib/stores/breadcrumb';
import { appStateStore, ToQuery } from '$lib/stores/filter';
import VideoCard from '$lib/components/video-card.svelte';
import StatusEditor from '$lib/components/status-editor.svelte';
import { Badge } from '$lib/components/ui/badge/index.js';
import { toast } from 'svelte-sonner';
let videoData: VideoResponse | null = null;
@@ -247,7 +241,6 @@
style="grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));"
>
{#each videoData.pages as pageInfo (pageInfo.id)}
<div class="space-y-2">
<VideoCard
video={{
id: pageInfo.id,
@@ -263,7 +256,6 @@
customSubtitle=""
taskNames={['视频封面', '视频内容', '视频信息', '视频弹幕', '视频字幕']}
/>
</div>
{/each}
</div>
</div>