Browse Source

style: 修改编辑器行尾符提示 (#465)

pull/468/head
zhengkunwang223 2 years ago committed by GitHub
parent
commit
bbe08ed218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      frontend/src/views/host/file-management/code-editor/index.vue

4
frontend/src/views/host/file-management/code-editor/index.vue

@ -93,11 +93,11 @@ let config = reactive<EditorConfig>({
const eols = [
{
label: 'LF',
label: 'LF (Linux)',
value: monaco.editor.EndOfLineSequence.LF,
},
{
label: 'CRLF',
label: 'CRLF (Windows)',
value: monaco.editor.EndOfLineSequence.CRLF,
},
];

Loading…
Cancel
Save