diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-28 20:02:28 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-28 20:02:28 +0900 |
| commit | def148d7a6f11478ff146d81ee71d699b01ef655 (patch) | |
| tree | 98399aae1d1f2315c5051726281529ba88189997 /packages/frontend/src/pages/admin | |
| parent | refactor (diff) | |
| download | misskey-def148d7a6f11478ff146d81ee71d699b01ef655.tar.gz misskey-def148d7a6f11478ff146d81ee71d699b01ef655.tar.bz2 misskey-def148d7a6f11478ff146d81ee71d699b01ef655.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/pages/admin')
| -rw-r--r-- | packages/frontend/src/pages/admin/modlog.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/admin/modlog.vue b/packages/frontend/src/pages/admin/modlog.vue index b7e5d6b219..08bdc8d254 100644 --- a/packages/frontend/src/pages/admin/modlog.vue +++ b/packages/frontend/src/pages/admin/modlog.vue @@ -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, })); }); |