Browse Source

fix: 解决应用商店 Go 和 Java 安装跳转错误的问题 (#5909)

Refs https://github.com/1Panel-dev/1Panel/issues/5900
pull/5914/head
zhengkunwang 4 months ago committed by GitHub
parent
commit
075879b5b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      frontend/src/views/app-store/detail/index.vue

6
frontend/src/views/app-store/detail/index.vue

@ -147,6 +147,12 @@ const openInstall = () => {
case 'node':
router.push({ path: '/websites/runtimes/node' });
break;
case 'java':
router.push({ path: '/websites/runtimes/java' });
break;
case 'go':
router.push({ path: '/websites/runtimes/go' });
break;
default:
const params = {
app: app.value,

Loading…
Cancel
Save