Skip to content
Snippets Groups Projects
Commit 5f5712a3 authored by syuilo's avatar syuilo
Browse files

fix(frontend): MFM unixtimeのプレビューがリアルタイムで反映されない

Fix #12350
parent 1518c5dd
No related branches found
No related tags found
No related merge requests found
......@@ -260,7 +260,11 @@ export default function(props: MfmProps) {
class: 'ti ti-clock',
style: 'margin-right: 0.25em;',
}),
h(MkTime, { time: unixtime * 1000, mode: 'detail' }),
h(MkTime, {
key: Math.random(),
time: unixtime * 1000,
mode: 'detail',
}),
]);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment