An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixed bug in getDeviceName where it would not return device id

jdpigeon 52798b4a 92346d54

+1 -1
+1 -1
app/components/CollectComponent/ConnectModal.js
··· 50 50 if (Object.prototype.hasOwnProperty.call(device, 'name')) { 51 51 return device.name; 52 52 } 53 - if (Object.prototype.hasOwnProperty.call(device, 'name')) { 53 + if (Object.prototype.hasOwnProperty.call(device, 'id')) { 54 54 return device.id; 55 55 } 56 56 }