Browse Source

style: 修改 openresty 的端口提示 (#4532)

pull/4534/head
zhengkunwang 7 months ago committed by GitHub
parent
commit
4814a76c47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 14
      frontend/src/components/app-status/index.vue

14
frontend/src/components/app-status/index.vue

@ -74,7 +74,19 @@
</div>
<div class="ml-5" v-if="key === 'openresty' && (httpPort != 80 || httpsPort != 443)">
<el-text type="danger">{{ $t('website.openrestyHelper', [httpPort, httpsPort]) }}</el-text>
<el-tooltip
effect="dark"
:content="$t('website.openrestyHelper', [httpPort, httpsPort])"
placement="top-start"
>
<el-alert
:title="$t('app.checkTitle')"
:closable="false"
type="warning"
show-icon
class="h-8"
/>
</el-tooltip>
</div>
</div>
</el-card>

Loading…
Cancel
Save