Fix: change loadBalance translate (#9448)

This commit is contained in:
CityFun 2025-07-08 10:47:54 +08:00 committed by GitHub
parent 2f72eb37ee
commit b5de2df119
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,10 @@
<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>
<template #footer>
<span class="dialog-footer">

View file

@ -80,7 +80,7 @@ const Algorithms = getAlgorithms();
const buttons = [
{
label: i18n.global.t('website.proxyFile'),
label: i18n.global.t('website.sourceFile'),
click: function (row: any) {
openEditFile(row);
},