import { Lecture, LessonTypeLabel } from "@nice/common"; // 修改 PostSelectOption 组件 export default function PostSelectOption({ post }: { post: Lecture }) { return (
{" "} {/* 添加 min-w-0 */} 课程封面
{" "} {/* 修改这里 */} {post?.meta?.type && ( {LessonTypeLabel[post?.meta?.type]} )} {post?.title}
); }