Skip to content

Commit

Permalink
sprintfix: 修复节点管理重装操作不显示密码的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhuoZhuoCrayon authored and normal-wls committed Aug 25, 2023
1 parent 5babb3f commit 61e745e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@
if (node_type === "PROXY") {
self.columns.push(...proxy_columns);
}
// 安装 / 卸载需要认证信息
if (op_type === "INSTALL" || op_type === "UNINSTALL") {
// 安装 / 重装 / 卸载需要认证信息
if (op_type === "INSTALL" || op_type === "UNINSTALL" || op_type === "REINSTALL") {
self.columns.push(...auth_columns);
}
// 非卸载场景需要配置信息
Expand Down

0 comments on commit 61e745e

Please sign in to comment.