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 12903a3 commit 6ff9781Copy full SHA for 6ff9781
gui/src/components/tracker/TrackerSettings.tsx
@@ -171,7 +171,10 @@ export function TrackerSettingsPage() {
171
tracker?.device?.hardwareInfo &&
172
checkForUpdate(currentFirmwareRelease, tracker?.device);
173
const updateUnavailable =
174
- tracker?.device?.hardwareInfo?.officialBoardType !== BoardType.SLIMEVR ||
+ (
175
+ tracker?.device?.hardwareInfo?.officialBoardType !== BoardType.SLIMEVR &&
176
+ tracker?.device?.hardwareInfo?.officialBoardType !== BoardType.SLIMEVR_V1_2
177
+ ) ||
178
!semver.valid(
179
tracker?.device?.hardwareInfo?.firmwareVersion?.toString() ?? 'none'
180
);
0 commit comments