Changed .env editing section title

This commit is contained in:
kevin 2023-11-30 16:03:51 -05:00
parent 2c4a1f2c8c
commit 998e65e99f
2 changed files with 4 additions and 5 deletions

View file

@ -98,6 +98,5 @@
"reconnecting...": "Reconnecting...",
"connecting...": "Connecting to the socket server...",
"url": "URL | URLs",
"extra": "Extra",
"Template Variables": "Template Variables"
"extra": "Extra"
}

View file

@ -165,7 +165,7 @@
{{ yamlError }}
</div>
<!-- ENV editor -->
<h6 class="mb-3">{{ $tc("Template Variables", 2) }}</h6>
<h6 class="mb-3">.env</h6>
<div class="shadow-box mb-3 editor-box" :class="{'edit-mode' : isEditMode}">
<prism-editor
ref="editor"
@ -619,11 +619,11 @@ export default {
greedy: true
},
"keyword": {
pattern: /^[^ :]*(?=:)/m,
pattern: /^[^ :=]*(?=[:=])/m,
greedy: true
},
"value": {
pattern: /(?<=:).*?((?= #)|$)/m,
pattern: /(?<=[:=]).*?((?= #)|$)/m,
greedy: true,
inside: {
"string": [