File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
packages/x-flow/src/components Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export default memo((props: any) => {
180
180
} ) }
181
181
onMouseEnter = { ( ) => setIsHovered ( true ) }
182
182
onMouseLeave = { ( ) => setIsHovered ( false ) }
183
- style = { { '--nodeBorderColor' : nodeBorderColor } }
183
+ style = { { '--nodeBorderColor' : nodeBorderColor } as React . CSSProperties }
184
184
>
185
185
{ ! settingMap ?. [ type ] ?. targetHandleHidden && (
186
186
< Handle
Original file line number Diff line number Diff line change @@ -102,9 +102,9 @@ export default memo((props: any) => {
102
102
quickSuggestions : false ,
103
103
minimap : { enabled : false } ,
104
104
// wordWrap: 'on',
105
- unicodeHighlight : {
106
- ambiguousCharacters : false ,
107
- } ,
105
+ // unicodeHighlight: {
106
+ // ambiguousCharacters: false,
107
+ // },
108
108
} }
109
109
onMount = { handleEditorDidMount }
110
110
// loading={''}
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export default memo((props: any) => {
77
77
'--status-color' : statusColor ,
78
78
'--status-bg-color' : bgColor ,
79
79
'--status-box-shadow' : boxShadowColor ,
80
- } }
80
+ } as React . CSSProperties }
81
81
>
82
82
< div
83
83
className = { classNames ( 'log-status-panel-wrap' , {
You can’t perform that action at this time.
0 commit comments