فهرست منبع

单词变为小写

visuddhinanda 3 سال پیش
والد
کامیت
541cb7c84b
1فایلهای تغییر یافته به همراه5 افزوده شده و 3 حذف شده
  1. 5 3
      dashboard/src/components/dict/Dictionary.tsx

+ 5 - 3
dashboard/src/components/dict/Dictionary.tsx

@@ -17,13 +17,15 @@ const Widget = ({ word, compact = false }: IWidget) => {
   const [container, setContainer] = useState<HTMLDivElement | null>(null);
 
   useEffect(() => {
-    setWordSearch(word);
+    setWordSearch(word?.toLowerCase());
   }, [word]);
+
   const onSearch = (value: string) => {
     console.log("onSearch", value);
-    setWordSearch(value);
+    const word = value.toLowerCase();
+    setWordSearch(word);
     if (compact === false) {
-      navigate("/dict/" + value);
+      navigate("/dict/" + word);
     }
   };
   return (