mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-18 11:26:10 +08:00
Fix: change loadBalance translate (#9448)
This commit is contained in:
parent
2f72eb37ee
commit
b5de2df119
2 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<DrawerPro v-model="open" :header="$t('website.proxyFile')" @close="handleClose" :size="mobile ? 'full' : 'normal'">
|
<DrawerPro
|
||||||
|
v-model="open"
|
||||||
|
:header="$t('website.sourceFile')"
|
||||||
|
@close="handleClose"
|
||||||
|
:size="mobile ? 'full' : 'normal'"
|
||||||
|
>
|
||||||
<CodemirrorPro v-model="req.content" mode="nginx"></CodemirrorPro>
|
<CodemirrorPro v-model="req.content" mode="nginx"></CodemirrorPro>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<span class="dialog-footer">
|
<span class="dialog-footer">
|
||||||
|
|
|
@ -80,7 +80,7 @@ const Algorithms = getAlgorithms();
|
||||||
|
|
||||||
const buttons = [
|
const buttons = [
|
||||||
{
|
{
|
||||||
label: i18n.global.t('website.proxyFile'),
|
label: i18n.global.t('website.sourceFile'),
|
||||||
click: function (row: any) {
|
click: function (row: any) {
|
||||||
openEditFile(row);
|
openEditFile(row);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue