File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -2118,14 +2118,16 @@ window.ComponentCascadeLine = class {
2118
2118
stack = parseInt ( node . getAttribute ( 'data-stack' ) ) ;
2119
2119
index = parseInt ( node . getAttribute ( 'data-k' ) ) ;
2120
2120
let node_data = this . dimensional_data [ stack ] [ index ] ;
2121
+ let title = '迁移' ;
2121
2122
if ( aim_node_data . parentNodes . indexOf ( node_data . key ) !== - 1 ) {
2122
2123
event = 'exchange' ;
2124
+ title += '.交换' ;
2123
2125
} else {
2124
2126
event = 'migrate' ;
2125
2127
}
2126
2128
if ( ! this . OPTIONS . exchange && event === 'exchange' ) return ;
2127
2129
aim_node . style . removeProperty ( 'background' ) ;
2128
- this . dialog ( `<span class="dlp-text title" title="${ node_data . val } ">${ node_data . val } </span> 迁移 ` , 90 ) ;
2130
+ this . dialog ( `<span class="dlp-text title" title="${ node_data . val } ">${ node_data . val } </span> ${ title } ` , 90 ) ;
2129
2131
let M = document . createElement ( 'div' ) ;
2130
2132
let object = this ;
2131
2133
M . className = 'dlp dlp-text dlp-label' ;
You can’t perform that action at this time.
0 commit comments