Skip to content

Commit

Permalink
make HID Device a slime
Browse files Browse the repository at this point in the history
  • Loading branch information
sctanf committed Nov 11, 2024
1 parent 5c5636a commit 5bfcfcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/components/tracker/TrackersTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const displayColumns: { [k: string]: boolean } = {
};

const isSlime = ({ device }: FlatDeviceTracker) =>
device?.hardwareInfo?.manufacturer === 'SlimeVR';
device?.hardwareInfo?.manufacturer === 'SlimeVR' || device?.hardwareInfo?.manufacturer === 'HID Device';

const getDeviceName = ({ device }: FlatDeviceTracker) =>
device?.customName?.toString() || '';
Expand Down

0 comments on commit 5bfcfcf

Please sign in to comment.