Skip to content

Commit

Permalink
🐛 修复添加实例错误禁用的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chaos-zhu committed Nov 19, 2024
1 parent 079c62b commit cb866c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion web/src/views/server/components/host-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit cb866c6

Please sign in to comment.