diff --git a/web/src/lib/components/shared-components/change-date.svelte b/web/src/lib/components/shared-components/change-date.svelte index 37dbeb80a0..ee350f7b12 100644 --- a/web/src/lib/components/shared-components/change-date.svelte +++ b/web/src/lib/components/shared-components/change-date.svelte @@ -50,7 +50,7 @@ const handleConfirm = () => { let date = DateTime.fromISO(selectedDate); if (selectedTimezone != null) { - date = date.setZone(selectedTimezone); + date = date.setZone(selectedTimezone, { keepLocalTime: true }); // Keep local time if not it's really confusing } const value = date.toISO(); diff --git a/web/src/lib/components/shared-components/update-panel.svelte b/web/src/lib/components/shared-components/update-panel.svelte index d43f43e24b..47a5c36b6c 100644 --- a/web/src/lib/components/shared-components/update-panel.svelte +++ b/web/src/lib/components/shared-components/update-panel.svelte @@ -27,7 +27,7 @@ }); } else { notificationController.show({ - message: `${assetUpdateCount} assets updated.\nPlease reload to apply changes`, + message: `${assetUpdateCount} assets updated.`, type: NotificationType.Info, }); }