1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #2998: Limit device query to non-racked devices if no rack selected when creating a cable

This commit is contained in:
Jeremy Stretch
2019-03-19 10:22:52 -04:00
parent 044f7395bb
commit f6345b9a5d
2 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,7 @@ v2.5.9 (FUTURE)
* [#2577](https://github.com/digitalocean/netbox/issues/2577) - Clarification of wording in API regarding filtering * [#2577](https://github.com/digitalocean/netbox/issues/2577) - Clarification of wording in API regarding filtering
* [#2924](https://github.com/digitalocean/netbox/issues/2924) - Add interface type for QSFP28 50GE * [#2924](https://github.com/digitalocean/netbox/issues/2924) - Add interface type for QSFP28 50GE
* [#2936](https://github.com/digitalocean/netbox/issues/2936) - Fix device role selection showing duplicate first entry * [#2936](https://github.com/digitalocean/netbox/issues/2936) - Fix device role selection showing duplicate first entry
* [#2998](https://github.com/digitalocean/netbox/issues/2998) - Limit device query to non-racked devices if no rack selected when creating a cable
v2.5.8 (2019-03-11) v2.5.8 (2019-03-11)

View File

@ -155,10 +155,13 @@ $(document).ready(function() {
filter_for_elements.each(function(index, filter_for_element) { filter_for_elements.each(function(index, filter_for_element) {
var param_name = $(filter_for_element).attr(attr_name); var param_name = $(filter_for_element).attr(attr_name);
var is_nullable = $(filter_for_element).attr("nullable");
var value = $(filter_for_element).val(); var value = $(filter_for_element).val();
if (param_name && value) { if (param_name && value) {
parameters[param_name] = value; parameters[param_name] = value;
} else if (param_name && is_nullable) {
parameters[param_name] = "null";
} }
}); });