diff --git a/web/src/components/skeleton-card.tsx b/web/src/components/skeleton-card.tsx
index 76142c48e..aa565facb 100644
--- a/web/src/components/skeleton-card.tsx
+++ b/web/src/components/skeleton-card.tsx
@@ -1,13 +1,16 @@
import { Skeleton } from '@/components/ui/skeleton';
+import { cn } from '@/lib/utils';
-export function SkeletonCard() {
+type SkeletonCardProps = {
+ className?: string;
+};
+export function SkeletonCard(props: SkeletonCardProps) {
+ const { className } = props;
return (
-
-
-
-
-
-
+
+
+
+
);
}
diff --git a/web/src/components/ui/select.tsx b/web/src/components/ui/select.tsx
index 3f030cbbb..acf39d6a8 100644
--- a/web/src/components/ui/select.tsx
+++ b/web/src/components/ui/select.tsx
@@ -224,6 +224,7 @@ export const RAGFlowSelect = forwardRef<
allowClear,
placeholder,
contentProps = {},
+ disabled = false,
// defaultValue,
triggerClassName,
onlyShowSelectedIcon = false,
@@ -278,7 +279,12 @@ export const RAGFlowSelect = forwardRef<
}, [onlyShowSelectedIcon, options, value]);
return (
-