Fix(backend): replyIdの型定義がミスっているのを修正
This commit is contained in:
parent
aff8a05dc5
commit
232cd62895
|
@ -22,7 +22,7 @@ export class MiNoteDraft {
|
|||
nullable: true,
|
||||
comment: 'The ID of reply target.',
|
||||
})
|
||||
public replyId: MiNoteDraft['id'] | null;
|
||||
public replyId: MiNote['id'] | null;
|
||||
|
||||
@ManyToOne(type => MiNote, {
|
||||
onDelete: 'CASCADE',
|
||||
|
|
Loading…
Reference in New Issue