From bbe08ed218ee8143c096aa2b545c8ff2720ba8f2 Mon Sep 17 00:00:00 2001 From: zhengkunwang223 <31820853+zhengkunwang223@users.noreply.github.com> Date: Fri, 31 Mar 2023 15:18:15 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E4=BF=AE=E6=94=B9=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E5=99=A8=E8=A1=8C=E5=B0=BE=E7=AC=A6=E6=8F=90=E7=A4=BA=20(#465)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/host/file-management/code-editor/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/host/file-management/code-editor/index.vue b/frontend/src/views/host/file-management/code-editor/index.vue index 38ad1d33b..31a3ee18c 100644 --- a/frontend/src/views/host/file-management/code-editor/index.vue +++ b/frontend/src/views/host/file-management/code-editor/index.vue @@ -93,11 +93,11 @@ let config = reactive({ const eols = [ { - label: 'LF', + label: 'LF (Linux)', value: monaco.editor.EndOfLineSequence.LF, }, { - label: 'CRLF', + label: 'CRLF (Windows)', value: monaco.editor.EndOfLineSequence.CRLF, }, ];