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

Fixes #2704: Fix form select widget population on parent with null value

This commit is contained in:
Jeremy Stretch
2018-12-20 15:49:35 -05:00
parent 853b1fad15
commit 4a10b4ece0
2 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,7 @@ $(document).ready(function() {
} else if (filter_field.val()) {
rendered_url = rendered_url.replace(match[0], filter_field.val());
} else if (filter_field.attr('nullable') == 'true') {
rendered_url = rendered_url.replace(match[0], '0');
rendered_url = rendered_url.replace(match[0], 'null');
}
}