fix lint (#6568)
This commit is contained in:
		
							parent
							
								
									1c200c9b94
								
							
						
					
					
						commit
						9415618992
					
				
					 1 changed files with 2 additions and 3 deletions
				
			
		|  | @ -44,9 +44,8 @@ export function createAiScriptEnv(vm, opts) { | ||||||
| 
 | 
 | ||||||
| export function createPluginEnv(vm, opts) { | export function createPluginEnv(vm, opts) { | ||||||
| 	const config = new Map(); | 	const config = new Map(); | ||||||
| 	for (const key in opts.plugin.config) { | 	for (const [k, v] of Object.entries(opts.plugin.config)) { | ||||||
| 		const val = opts.plugin.configData[key] || opts.plugin.config[key].default; | 		config.set(k, jsToVal(opts.plugin.configData[k] || v.default)); | ||||||
| 		config.set(key, jsToVal(val)); |  | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	return { | 	return { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue