mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-01-06 15:14:29 +08:00
fix: fix issue with local app can not open port (#9145)
This commit is contained in:
parent
2c290dbbf7
commit
0c31fcc8a3
1 changed files with 6 additions and 3 deletions
|
|
@ -237,17 +237,20 @@
|
|||
plain
|
||||
size="small"
|
||||
>
|
||||
{{ $t('app.busPort') }}{{ $t('commons.colon')
|
||||
{{ $t('commons.table.port') }}{{ $t('commons.colon')
|
||||
}}{{ installed.httpPort }}
|
||||
</el-button>
|
||||
<el-button v-if="installed.httpsPort > 0" plain size="small">
|
||||
{{ $t('app.busPort') }}:{{ installed.httpsPort }}
|
||||
{{ $t('commons.table.port') }}:{{ installed.httpsPort }}
|
||||
</el-button>
|
||||
|
||||
<el-popover
|
||||
placement="top-start"
|
||||
trigger="hover"
|
||||
v-if="installed.appType == 'website'"
|
||||
v-if="
|
||||
installed.appType == 'website' ||
|
||||
installed.appKey?.startsWith('local')
|
||||
"
|
||||
:width="400"
|
||||
>
|
||||
<template #reference>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue