🐛 修复添加实例错误禁用的bug

This commit is contained in:
chaos-zhu 2024-11-19 21:50:14 +08:00
parent 079c62b838
commit d149e947bc
4 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
## [3.0.2](https://github.com/chaos-zhu/easynode/releases) (2024-11-20)
* 修复添加实例错误禁用的bug
## [3.0.1](https://github.com/chaos-zhu/easynode/releases) (2024-11-18)
* 修复同IP实例SFTP连接到其他的实例的bug

View File

@ -1,6 +1,6 @@
{
"name": "server",
"version": "3.0.1",
"version": "3.0.2",
"description": "easynode-server",
"bin": "./bin/www",
"scripts": {

View File

@ -1,6 +1,6 @@
{
"name": "web",
"version": "3.0.1",
"version": "3.0.2",
"description": "easynode-web",
"private": true,
"scripts": {

View File

@ -281,7 +281,8 @@
<template #footer>
<span class="dialog-footer">
<el-button @click="visible = false">关闭</el-button>
<PlusSupportTip>
<el-button v-if="!isBatchModify" type="primary" @click="handleSave">确认</el-button>
<PlusSupportTip v-else>
<el-button type="primary" :disabled="!isPlusActive" @click="handleSave">确认</el-button>
</PlusSupportTip>
</span>