This commit is contained in:
syuilo 2025-08-28 20:02:28 +09:00
parent aa85d701b9
commit def148d7a6
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ const timeline = computed(() => {
return paginator.items.value.map(x => ({
id: x.id,
timestamp: new Date(x.createdAt).getTime(),
data: x,
data: x as Misskey.entities.ModerationLog,
}));
});

View File

@ -49,7 +49,7 @@ export type ModerationLog = {
id: ID;
createdAt: DateString;
userId: User['id'];
user: UserDetailedNotMe | null;
user: UserDetailedNotMe;
} & ({
type: 'updateServerSettings';
info: ModerationLogPayloads['updateServerSettings'];