File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
backends/advanced/webui/src/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ interface PluginMetadata {
99 name : string
1010 description : string
1111 enabled : boolean
12- status : string
12+ status : 'active' | 'disabled' | 'error'
1313 supports_testing : boolean
1414 config_schema : {
1515 orchestration : any
@@ -207,7 +207,7 @@ export default function PluginSettingsForm({ className }: PluginSettingsFormProp
207207 }
208208 } )
209209
210- const response = await systemApi . updatePluginConfigStructured ( selectedPluginId , {
210+ await systemApi . updatePluginConfigStructured ( selectedPluginId , {
211211 orchestration : currentConfig . orchestration ,
212212 settings : currentConfig . settings ,
213213 env_vars : Object . keys ( envVarsToSend ) . length > 0 ? envVarsToSend : undefined
You can’t perform that action at this time.
0 commit comments