fix ui: custom transformer error

This commit is contained in:
musistudio
2025-08-04 13:18:57 +08:00
parent 38c6cf0c9a
commit 7bb816ad03
4 changed files with 27 additions and 28 deletions

View File

@@ -47,7 +47,7 @@ export function TransformerList({ transformers, onEdit, onRemove }: TransformerL
const transformerPath = transformer.path || "Unnamed Transformer";
// Handle case where transformer.parameters might be null or undefined
const options = transformer.parameters || {};
const options = transformer.options || {};
// Render parameters as tags in a single line
const renderParameters = () => {