visuddhinanda 2 лет назад
Родитель
Сommit
15a7bebcdd

+ 2 - 0
dashboard/src/components/api/Channel.ts

@@ -36,6 +36,8 @@ export interface IApiResponseChannelData {
   updated_at: string;
   role?: TRole;
   final?: IFinal[];
+  content_created_at: string;
+  content_updated_at: string;
 }
 export interface IApiResponseChannel {
   ok: boolean;

+ 2 - 0
dashboard/src/components/channel/ChannelPickerTable.tsx

@@ -43,6 +43,8 @@ export interface IItem {
   final?: IFinal[];
   progress: number;
   createdAt: number;
+  content_created_at?: string;
+  content_updated_at?: string;
 }
 interface IWidget {
   type?: ArticleType | "editable";