Răsfoiți Sursa

note: string | null;

visuddhinanda 3 ani în urmă
părinte
comite
e7e47f53eb
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      dashboard/src/components/term/TermList.tsx

+ 1 - 1
dashboard/src/components/term/TermList.tsx

@@ -28,7 +28,7 @@ interface IItem {
   channel?: IChannel;
   meaning: string;
   meaning2: string;
-  note: string;
+  note: string | null;
   createdAt: number;
 }