Browse Source

id: number -> string

visuddhinanda 3 years ago
parent
commit
db5d1fdcbb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dashboard/src/components/api/Dict.ts

+ 1 - 1
dashboard/src/components/api/Dict.ts

@@ -14,7 +14,7 @@ export interface IDictDataRequest {
   confidence: number;
 }
 export interface IApiResponseDictData {
-  id: number;
+  id: string;
   word: string;
   type: string;
   grammar: string;