Skip to content

Commit

Permalink
fix(ui): log nodes rules to allow ids up to 4k
Browse files Browse the repository at this point in the history
Fixes #3827
  • Loading branch information
robertsLando committed Jul 26, 2024
1 parent 7d47bd2 commit 942df8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2129,8 +2129,8 @@ export default {
validNodeLog: (values) => {
return (
!values ||
values.every((v) => v > 0 && v < 233) ||
'Nodes must be between 1-232'
values.every((v) => v > 0 && v < 4000) ||
'Nodes must be between 1-4000'
)
},
validName: (value) => {
Expand Down

0 comments on commit 942df8b

Please sign in to comment.