Przeglądaj źródła

note: string | null;

visuddhinanda 3 lat temu
rodzic
commit
e7e47f53eb
1 zmienionych plików z 1 dodań i 1 usunięć
  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;
 }