diff --git a/modules/rsocials/components/folk-campaign-workflow.ts b/modules/rsocials/components/folk-campaign-workflow.ts
index 41d027e..614ba34 100644
--- a/modules/rsocials/components/folk-campaign-workflow.ts
+++ b/modules/rsocials/components/folk-campaign-workflow.ts
@@ -399,17 +399,6 @@ class FolkCampaignWorkflow extends HTMLElement {
`;
}
- // Port labels
- let portLabelHtml = '';
- for (const inp of def.inputs) {
- const y = getPortY(node, inp.name, 'input');
- portLabelHtml += `${inp.name}`;
- }
- for (const out of def.outputs) {
- const y = getPortY(node, out.name, 'output');
- portLabelHtml += `${out.name}`;
- }
-
return `
@@ -430,7 +419,6 @@ class FolkCampaignWorkflow extends HTMLElement {
${portsHtml}
- ${portLabelHtml}
`;
}
@@ -567,24 +555,6 @@ class FolkCampaignWorkflow extends HTMLElement {
c.setAttribute('cy', String(y));
});
});
- const labels = g.querySelectorAll('text');
- let labelIdx = 0;
- for (const inp of def.inputs) {
- if (labels[labelIdx]) {
- const y = getPortY(node, inp.name, 'input');
- labels[labelIdx].setAttribute('x', String(node.position.x + 14));
- labels[labelIdx].setAttribute('y', String(y + 4));
- }
- labelIdx++;
- }
- for (const out of def.outputs) {
- if (labels[labelIdx]) {
- const y = getPortY(node, out.name, 'output');
- labels[labelIdx].setAttribute('x', String(node.position.x + NODE_WIDTH - 14));
- labels[labelIdx].setAttribute('y', String(y + 4));
- }
- labelIdx++;
- }
}
private refreshConfigPanel() {