fix: check version loading progress

This commit is contained in:
Timothy J. Baek 2024-02-25 12:10:14 -08:00
parent 759883a4c8
commit fb3804ac95

View file

@ -8,13 +8,14 @@
let ollamaVersion = '';
let updateAvailable = false;
let updateAvailable = null;
let version = {
current: '',
latest: ''
};
const checkForVersionUpdates = async () => {
updateAvailable = null;
version = await getVersionUpdates(localStorage.token).catch((error) => {
return {
current: WEBUI_VERSION,
@ -54,7 +55,11 @@
href="https://github.com/open-webui/open-webui/releases/tag/v{version.latest}"
target="_blank"
>
{updateAvailable ? `(v${version.latest} available!)` : '(latest)'}
{updateAvailable === null
? 'Checking for updates...'
: updateAvailable
? `(v${version.latest} available!)`
: '(latest)'}
</a>
</div>