mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 13:17:50 +08:00
[fix-3553][ui]Repair click workflow connection, select the entire path
This commit is contained in:
parent
836e86dca5
commit
5cf1e2df9d
@ -196,7 +196,6 @@
|
||||
],
|
||||
Connector: 'Bezier',
|
||||
PaintStyle: { lineWidth: 2, stroke: '#456' }, // Connection style
|
||||
HoverPaintStyle: {stroke: '#ccc', strokeWidth: 3},
|
||||
ConnectionOverlays: [
|
||||
[
|
||||
'Arrow',
|
||||
@ -685,7 +684,6 @@
|
||||
],
|
||||
Connector: 'Bezier',
|
||||
PaintStyle: { lineWidth: 2, stroke: '#456' }, // Connection style
|
||||
HoverPaintStyle: {stroke: '#ccc', strokeWidth: 3},
|
||||
ConnectionOverlays: [
|
||||
[
|
||||
'Arrow',
|
||||
|
@ -100,13 +100,13 @@ const setSvgColor = (e, color) => {
|
||||
// Traverse clear all colors
|
||||
$('.jtk-connector').each((i, o) => {
|
||||
_.map($(o)[0].childNodes, v => {
|
||||
$(v).attr('fill', '#2d8cf0').attr('stroke', '#2d8cf0').attr('stroke-width', 2)
|
||||
$(v).attr('stroke', '#2d8cf0').attr('stroke-width', 2)
|
||||
})
|
||||
})
|
||||
|
||||
// Add color to the selection
|
||||
_.map($(e.canvas)[0].childNodes, (v, i) => {
|
||||
$(v).attr('fill', color).attr('stroke', color)
|
||||
$(v).attr('stroke', '#ccc')
|
||||
if ($(v).attr('class')) {
|
||||
$(v).attr('stroke-width', 2)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user