mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
Fixes #2406: Remove hard-coded limit of 1000 objects from API-populated form fields
This commit is contained in:
parent
010765e131
commit
3a88e43103
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user