mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
fix(web): show inferred timezone in date editor (#24513)
fix(web): show inferred timezone of asset in date editor
This commit is contained in:
parent
4c0a41723f
commit
c5d99711f7
1 changed files with 5 additions and 1 deletions
|
|
@ -114,7 +114,11 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
await modalManager.show(AssetChangeDateModal, { asset: toTimelineAsset(asset), initialDate: dateTime });
|
await modalManager.show(AssetChangeDateModal, {
|
||||||
|
asset: toTimelineAsset(asset),
|
||||||
|
initialDate: dateTime,
|
||||||
|
initialTimeZone: timeZone,
|
||||||
|
});
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue