mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-01 21:36:25 -06:00
This commit is contained in:
parent
c593eca936
commit
6e13ab58aa
@ -16,6 +16,7 @@
|
||||
* [#4438](https://github.com/netbox-community/netbox/issues/4438) - Fix exception when disconnecting a cable from a power feed
|
||||
* [#4439](https://github.com/netbox-community/netbox/issues/4439) - Tweak display of unset custom integer fields
|
||||
* [#4449](https://github.com/netbox-community/netbox/issues/4449) - Fix reservation edit/delete button URLs on rack view
|
||||
* [#4471](https://github.com/netbox-community/netbox/issues/4471) - Fix populating Device Type Attribute in Device Bulk Edit view
|
||||
|
||||
---
|
||||
|
||||
|
@ -221,7 +221,7 @@ $(document).ready(function() {
|
||||
var results = data.results;
|
||||
|
||||
results = results.reduce((results,record,idx) => {
|
||||
record.text = record[element.getAttribute('display-field')] || record.name;
|
||||
record.text = record[element.getAttribute('display-field')] || record.name || record.model;
|
||||
record.id = record[element.getAttribute('value-field')] || record.id;
|
||||
if(element.getAttribute('disabled-indicator') && record[element.getAttribute('disabled-indicator')]) {
|
||||
// The disabled-indicator equated to true, so we disable this option
|
||||
|
Loading…
Reference in New Issue
Block a user