mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fix hasSaveMethod not defined
This commit is contained in:
parent
95f4e2f7cd
commit
fb35242c9c
1 changed files with 1 additions and 1 deletions
|
|
@ -502,8 +502,8 @@ class BuildLists {
|
|||
})
|
||||
}
|
||||
|
||||
const saveMethod = hasSaveMethod ? listOptions.beforeSave : listSet => Array.from( listSet )
|
||||
const hasSaveMethod = has( listOptions, 'beforeSave' )
|
||||
const saveMethod = hasSaveMethod ? listOptions.beforeSave : listSet => Array.from( listSet )
|
||||
|
||||
const [ saveableEntry ] = saveMethod( new Set( [ listEntry ] ) )
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue