mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
Fixes for static analysis
This commit is contained in:
parent
e9608ec1fc
commit
ad97fb0f92
6 changed files with 26 additions and 9 deletions
|
|
@ -486,6 +486,8 @@ class APIFormField {
|
|||
if (quantity == null) {
|
||||
return L10().numberInvalid;
|
||||
}
|
||||
|
||||
return null;
|
||||
},
|
||||
onSaved: (val) {
|
||||
data["value"] = val;
|
||||
|
|
@ -673,6 +675,8 @@ class APIFormField {
|
|||
if (required && (value == null || value.isEmpty)) {
|
||||
// return L10().valueCannotBeEmpty;
|
||||
}
|
||||
|
||||
return null;
|
||||
},
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue