mirror of
https://github.com/open-webui/open-webui
synced 2025-01-31 06:49:03 +00:00
refac: update toast dismiss behaviour
This commit is contained in:
parent
119a7f1933
commit
888479aaf0
@ -35,6 +35,7 @@
|
|||||||
class=" hover:text-blue-900 dark:hover:text-blue-300 transition"
|
class=" hover:text-blue-900 dark:hover:text-blue-300 transition"
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
console.log('closeToast');
|
console.log('closeToast');
|
||||||
|
localStorage.setItem('dismissedUpdateToast', Date.now().toString());
|
||||||
dispatch('closeToast');
|
dispatch('closeToast');
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
@ -195,10 +195,20 @@
|
|||||||
temporaryChatEnabled.set(true);
|
temporaryChatEnabled.set(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check for version updates
|
||||||
if ($user.role === 'admin') {
|
if ($user.role === 'admin') {
|
||||||
checkForVersionUpdates();
|
// Check if the user has dismissed the update toast in the last 24 hours
|
||||||
}
|
if (localStorage.dismissedUpdateToast) {
|
||||||
|
const dismissedUpdateToast = new Date(Number(localStorage.dismissedUpdateToast));
|
||||||
|
const now = new Date();
|
||||||
|
|
||||||
|
if (now - dismissedUpdateToast > 24 * 60 * 60 * 1000) {
|
||||||
|
await checkForVersionUpdates();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
await checkForVersionUpdates();
|
||||||
|
}
|
||||||
|
}
|
||||||
await tick();
|
await tick();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user