2
0
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:
Oliver
2026-02-28 15:47:01 +11:00
committed by GitHub
parent a38ec4cf0d
commit d45ed1f838

View File

@@ -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);