@hzab/flowlong-designer 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -312,16 +312,15 @@ export const Branch = (props) => {
|
|
|
312
312
|
<div className="title">
|
|
313
313
|
<span className="node-title">{item.nodeName}</span>
|
|
314
314
|
<span className="priority-title">优先级{item.priorityLevel}</span>
|
|
315
|
-
{!conditionDisable
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
))}
|
|
315
|
+
{!conditionDisable && !disable && (
|
|
316
|
+
<DeleteOutlined
|
|
317
|
+
className="delete-btn"
|
|
318
|
+
onClick={(e) => {
|
|
319
|
+
e.stopPropagation();
|
|
320
|
+
onTermDel(idx);
|
|
321
|
+
}}
|
|
322
|
+
/>
|
|
323
|
+
)}
|
|
325
324
|
</div>
|
|
326
325
|
<div className="content">
|
|
327
326
|
{toText(nodeConfig, idx) ? (
|