Cache forms #187
@ -1,3 +1,4 @@
|
||||
import _ from 'lodash'
|
||||
import { NDKEvent } from '@nostr-dev-kit/ndk'
|
||||
import { Event } from 'nostr-tools'
|
||||
import { ModDetails, ModFormState } from '../types'
|
||||
@ -131,10 +132,10 @@ export const initializeFormState = (
|
||||
originalAuthor: existingModData?.originalAuthor || undefined,
|
||||
screenshotsUrls: existingModData?.screenshotsUrls || [''],
|
||||
tags: existingModData?.tags.join(',') || '',
|
||||
lTags: existingModData ? [...existingModData.lTags] : [],
|
||||
LTags: existingModData ? [...existingModData.LTags] : [],
|
||||
lTags: existingModData ? _.clone(existingModData.lTags) : [],
|
||||
LTags: existingModData ? _.clone(existingModData.lTags) : [],
|
||||
downloadUrls: existingModData
|
||||
? [...existingModData.downloadUrls.map((url) => ({ ...url }))]
|
||||
? _.cloneDeep(existingModData.downloadUrls)
|
||||
: [
|
||||
{
|
||||
url: '',
|
||||
|
Loading…
x
Reference in New Issue
Block a user