mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 21:42:58 +00:00
fix: checkVersion
This commit is contained in:
parent
032d7c7440
commit
59fb1b933d
@ -102,8 +102,9 @@ export const copyToClipboard = (text) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const checkVersion = (required, current) => {
|
export const checkVersion = (required, current) => {
|
||||||
|
// Returns true when current version is below required
|
||||||
return current === '0.0.0'
|
return current === '0.0.0'
|
||||||
? true
|
? false
|
||||||
: current.localeCompare(required, undefined, {
|
: current.localeCompare(required, undefined, {
|
||||||
numeric: true,
|
numeric: true,
|
||||||
sensitivity: 'case',
|
sensitivity: 'case',
|
||||||
|
Loading…
Reference in New Issue
Block a user