mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-04-17 08:00:34 +00:00
[bug] Fix fetching of related field values (#789)
- Fixes https://github.com/inventree/inventree-app/issues/784
This commit is contained in:
parent
a38ec4cf0d
commit
d45ed1f838
1 changed files with 1 additions and 1 deletions
|
|
@ -275,7 +275,7 @@ class APIFormField {
|
|||
return;
|
||||
}
|
||||
|
||||
String url = api_url + "/" + value.toString() + "/";
|
||||
String url = api_url + value.toString() + "/";
|
||||
|
||||
final APIResponse response = await InvenTreeAPI().get(url, params: filters);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue