mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
fix: 允许更新默认分组 (#426)
* fix: 允许更新默认分组 * improve: check null --------- Co-authored-by: naiba <hi@nai.ba>
This commit is contained in:
parent
2b40040ec5
commit
3250283ef9
@ -159,8 +159,8 @@
|
||||
}
|
||||
function batchEditServerGroup() {
|
||||
let groupName = prompt('{{tr "InputServerGroupName"}}')
|
||||
if (!groupName) {
|
||||
return;
|
||||
if (groupName === null) {
|
||||
return
|
||||
}
|
||||
const servers = []
|
||||
checkBoxList.forEach(cb => {
|
||||
|
Loading…
Reference in New Issue
Block a user