Refine weight limits
This commit is contained in:
parent
9986d538d3
commit
fc149b0b1f
2 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@ function vlShapeWeight(x) {
|
|||
return x >= 100 && x <= 900;
|
||||
}
|
||||
function vlCssWeight(x) {
|
||||
return x >= 0 && x <= 1000;
|
||||
return x > 0 && x < 1000;
|
||||
}
|
||||
function vlMenuWeight(x) {
|
||||
return vlCssWeight(x);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue