Top level fix (#874)

* Fix top-level items

* Show pagination error messages

* Update release notes

* Check API version
This commit is contained in:
Oliver
2026-09-01 23:55:01 +10:00
committed by GitHub
parent 0b5c14c7ae
commit 5418a71207
6 changed files with 29 additions and 3 deletions
+6
View File
@@ -752,6 +752,12 @@ class InvenTreeModel {
return null;
}
// A client error (e.g. 400 Bad Request) was returned - notify the user
if (response.clientError()) {
showStatusCodeError(URL, response.statusCode, details: response.data);
return null;
}
// Construct the response
InvenTreePageResponse page = InvenTreePageResponse();