Skip to content

Commit

Permalink
Refactor cursor labels
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulyadav-57 committed May 2, 2024
1 parent bb57423 commit 1fd9f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/workspace/Editor/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const Editor: FC<Props> = ({ file, projectId, className = '' }) => {
<div className={`${s.container} ${className}`}>
<div className={s.editorInfo}>
<span>
Line {cursorPosition[0]}, Column {cursorPosition[1]}
Ln {cursorPosition[0]}, Col {cursorPosition[1]}
</span>
</div>
<EditorDefault
Expand Down

0 comments on commit 1fd9f90

Please sign in to comment.