Parcourir la source

note: string | null;

visuddhinanda il y a 3 ans
Parent
commit
e7e47f53eb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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;
   channel?: IChannel;
   meaning: string;
   meaning: string;
   meaning2: string;
   meaning2: string;
-  note: string;
+  note: string | null;
   createdAt: number;
   createdAt: number;
 }
 }