mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #2406: Remove hard-coded limit of 1000 objects from API-populated form fields
This commit is contained in:
@ -1,3 +1,11 @@
|
||||
v2.4.5 (FUTURE)
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
* [#2406](https://github.com/digitalocean/netbox/issues/2406) - Remove hard-coded limit of 1000 objects from API-populated form fields
|
||||
|
||||
---
|
||||
|
||||
v2.4.4 (2018-08-22)
|
||||
|
||||
## Enhancements
|
||||
|
@ -82,7 +82,7 @@ $(document).ready(function() {
|
||||
}
|
||||
|
||||
if ($(parent).val() || $(parent).attr('nullable') == 'true') {
|
||||
var api_url = child_field.attr('api-url') + '&limit=1000';
|
||||
var api_url = child_field.attr('api-url');
|
||||
var disabled_indicator = child_field.attr('disabled-indicator');
|
||||
var initial_value = child_field.attr('initial');
|
||||
var display_field = child_field.attr('display-field') || 'name';
|
||||
|
Reference in New Issue
Block a user