Skip to content

Commit d1c577f

Browse files
authored
Merge pull request #2027 from ethereum/fix-cursor
Remove border for correct cursor position
2 parents a481499 + 243c56d commit d1c577f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/remix-ui/editor/src/lib/remix-ui-editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ export const EditorUI = (props: EditorUIProps) => {
264264
range: new monacoRef.current.Range(marker.position.start.line + 1, marker.position.start.column + 1, marker.position.end.line + 1, marker.position.end.column + 1),
265265
options: {
266266
isWholeLine,
267-
inlineClassName: `alert-info highlightLine${marker.position.start.line + 1}`
267+
inlineClassName: `alert-info border-0 highlightLine${marker.position.start.line + 1}`
268268
}
269269
})
270270
}

0 commit comments

Comments
 (0)