fix bug of text element

This commit is contained in:
yctimlin
2025-07-12 09:54:18 +00:00
parent 86232d9c94
commit aa605b3bed
+5
View File
@@ -401,6 +401,11 @@ const server = new Server(
function convertTextToLabel(element) { function convertTextToLabel(element) {
const { text, ...rest } = element; const { text, ...rest } = element;
if (text) { if (text) {
// For standalone text elements, keep text as direct property
if (element.type === 'text') {
return element; // Keep text as direct property
}
// For other elements (rectangle, ellipse, diamond), convert to label format
return { return {
...rest, ...rest,
label: { text } label: { text }