mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-24 13:03:39 +00:00
scheduledAtにしたときの変更忘れ
Signed-off-by: mattyatea <mattyacocacora0@gmail.com>
This commit is contained in:
@@ -806,8 +806,8 @@ async function post(ev?: MouseEvent) {
|
||||
}
|
||||
poll = null;
|
||||
|
||||
if (postData.schedule?.expiresAt) {
|
||||
const d = new Date(postData.schedule.expiresAt);
|
||||
if (postData.schedule?.scheduledAt) {
|
||||
const d = new Date(postData.schedule.scheduledAt);
|
||||
const str = dateTimeFormat.format(d);
|
||||
os.toast(i18n.t('_schedulePost.willBePostedAtX', { date: str }));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user