Procházet zdrojové kódy

note: string | null;

visuddhinanda před 2 roky
rodič
revize
e7e47f53eb
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;
 }