Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2802,7 +2802,7 @@ const message = {
'If unsure, you can enter 0.0.0.0/0 (ipv4) ::/0 (ipv6) [Note: Allowing any source IP is not secure]',
http3Helper:
'HTTP/3 is an upgrade to HTTP/2, offering faster connection speeds and better performance, but not all browsers support HTTP/3. Enabling it may cause some browsers to be unable to access the site.',
cors: 'Cross-Origin Resource Sharing (CORS)',
cors: 'CORS',
enableCors: 'Enable CORS',
allowOrigins: 'Allowed domains',
allowMethods: 'Allowed request methods',
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/views/website/runtime/php/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</el-text>
</template>
</el-table-column>
<el-table-column :label="$t('home.dir')" prop="codeDir" width="80px">
<el-table-column :label="$t('home.dir')" prop="codeDir" width="100px">
<template #default="{ row }">
<el-button type="primary" link @click="routerToFileWithPath(row.path)">
<el-icon>
Expand Down Expand Up @@ -105,7 +105,7 @@
/>
<fu-table-operations
:ellipsis="mobile ? 0 : 3"
:width="mobile ? 'auto' : 200"
:width="mobile ? 'auto' : 300"
:buttons="buttons"
fixed="right"
:label="$t('commons.table.operate')"
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/views/website/ssl/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
prop="domains"
min-width="90px"
></el-table-column>
<el-table-column :label="$t('ssl.applyType')" show-overflow-tooltip prop="provider" width="120px">
<el-table-column :label="$t('ssl.applyType')" show-overflow-tooltip prop="provider" width="200px">
<template #default="{ row }">{{ getProvider(row.provider) }}</template>
</el-table-column>
<el-table-column
Expand All @@ -72,7 +72,7 @@
:label="$t('commons.table.status')"
show-overflow-tooltip
prop="status"
width="100px"
width="110px"
>
<template #default="{ row }">
<el-popover
Expand Down Expand Up @@ -127,7 +127,7 @@
</fu-read-write-switch>
</template>
</el-table-column>
<el-table-column :label="$t('ssl.autoRenew')" width="100px">
<el-table-column :label="$t('ssl.autoRenew')" width="200px">
<template #default="{ row }">
<el-switch
:disabled="
Expand All @@ -153,7 +153,7 @@
:buttons="buttons"
:label="$t('commons.table.operate')"
:fixed="mobile ? false : 'right'"
width="300px"
width="320px"
fix
/>
</ComplexTable>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/views/website/website/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
</div>
</template>
</el-table-column>
<el-table-column :label="$t('website.sslExpireDate')" prop="sslExpireDate" width="150px">
<el-table-column :label="$t('website.sslExpireDate')" prop="sslExpireDate" width="160px">
<template #default="{ row }">
<el-tag v-if="row.protocol == 'HTTPS'" :type="row.sslStatus">
{{ dateFormatSimple(row.sslExpireDate) }}
Expand All @@ -221,7 +221,7 @@
</el-table-column>
<fu-table-operations
:ellipsis="1"
width="150px"
width="180px"
:buttons="buttons"
:label="$t('commons.table.operate')"
:fixed="mobile ? false : 'right'"
Expand Down
Loading