mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -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
|
||||
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 )
|
||||
return {
|
||||
...device,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue