We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ffdef commit 3d6e88cCopy full SHA for 3d6e88c
ui/src/components/KvmCard.tsx
@@ -63,9 +63,9 @@ export default function KvmCard({
63
* their actual version. Unparseable versions fall back to 0.4.91 for safety.
64
*/
65
const kvmUrl = useMemo(() => {
66
- const BACKWARDS_COMPATIBLE_VERSION = "0.4.91";
+ const BACKWARDS_COMPATIBLE_VERSION = "0.5.0";
67
68
- // Use device version if valid and >= 0.4.91, otherwise fall back to backwards-compatible version
+ // Use device version if valid and >= 0.5.0, otherwise fall back to backwards-compatible version
69
const shouldUseDeviceVersion =
70
semver.valid(appVersion) && semver.gte(appVersion, BACKWARDS_COMPATIBLE_VERSION);
71
const version = shouldUseDeviceVersion ? appVersion : BACKWARDS_COMPATIBLE_VERSION;
0 commit comments