mirror of
https://github.com/inventree/inventree-app.git
synced 2026-03-11 12:45:00 +00:00
[bug] Fix fetching of related field values (#789)
- Fixes https://github.com/inventree/inventree-app/issues/784
This commit is contained in:
@@ -275,7 +275,7 @@ class APIFormField {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
String url = api_url + "/" + value.toString() + "/";
|
String url = api_url + value.toString() + "/";
|
||||||
|
|
||||||
final APIResponse response = await InvenTreeAPI().get(url, params: filters);
|
final APIResponse response = await InvenTreeAPI().get(url, params: filters);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user