diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index 1fd35052a..9b3f10589 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -5,6 +5,8 @@ ### Bug Fixes * [#6811](https://github.com/netbox-community/netbox/issues/6811) - Fix exception when editing users +* [#6827](https://github.com/netbox-community/netbox/issues/6827) - Fix circuit termination connection dropdown +* [#6846](https://github.com/netbox-community/netbox/issues/6846) - Form-driven REST API calls should use brief mode --- diff --git a/netbox/project-static/dist/netbox.js b/netbox/project-static/dist/netbox.js index 83a8adb7e..b9d43fb29 100644 Binary files a/netbox/project-static/dist/netbox.js and b/netbox/project-static/dist/netbox.js differ diff --git a/netbox/project-static/dist/netbox.js.map b/netbox/project-static/dist/netbox.js.map index 0dc9f4517..24ffa24e7 100644 Binary files a/netbox/project-static/dist/netbox.js.map and b/netbox/project-static/dist/netbox.js.map differ diff --git a/netbox/project-static/src/select/api.ts b/netbox/project-static/src/select/api.ts index 62db61363..abdacc3ce 100644 --- a/netbox/project-static/src/select/api.ts +++ b/netbox/project-static/src/select/api.ts @@ -162,8 +162,7 @@ class APISelect { this.updatePathValues(filter); } - // TODO: Re-enable this. Disabled because `_depth` field is missing from brief responses. - // this.queryParams.set('brief', true); + this.queryParams.set('brief', true); this.queryParams.set('limit', 0); this.updateQueryUrl();