bugfix
This commit is contained in:
parent
4925de6d46
commit
263f63a29e
@ -28,9 +28,16 @@ bricks.UserInputView = class extends bricks.VBox {
|
||||
width: '100%'
|
||||
});
|
||||
} else if (f.name.startsWith('image')){
|
||||
mdtext += '\n\n';
|
||||
mdtext += `
|
||||

|
||||
`;
|
||||
} else {
|
||||
mdtext += '\n* ' + f.label || f.name + '\n```\n' + data[f.name] + '\n```\n';
|
||||
mdtext += `
|
||||
* ${f.label || f.name}
|
||||
\`\`\`
|
||||
${data[f.name]}
|
||||
\`\`\`
|
||||
`;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user