mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fix try to map Set
This commit is contained in:
parent
b9d05f5fa0
commit
f83b0111b3
1 changed files with 3 additions and 1 deletions
|
|
@ -297,7 +297,9 @@ class BuildLists {
|
||||||
|
|
||||||
// Add device support
|
// Add device support
|
||||||
if ( this.shouldHaveDeviceSupport( listEntry ) ) {
|
if ( this.shouldHaveDeviceSupport( listEntry ) ) {
|
||||||
listEntry.deviceSupport = this.lists[ 'device' ].map( device => {
|
const deviceList = Array.from( this.lists[ 'device' ] )
|
||||||
|
|
||||||
|
listEntry.deviceSupport = deviceList.map( device => {
|
||||||
const supportsApp = deviceSupportsApp( device, listEntry )
|
const supportsApp = deviceSupportsApp( device, listEntry )
|
||||||
return {
|
return {
|
||||||
...device,
|
...device,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue