mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #6248: Fix table column reconfiguration under Chrome
This commit is contained in:
@ -5,6 +5,7 @@
|
|||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* [#6246](https://github.com/netbox-community/netbox/issues/6246) - Permit full-length descriptions when creating device components and VM interfaces
|
* [#6246](https://github.com/netbox-community/netbox/issues/6246) - Permit full-length descriptions when creating device components and VM interfaces
|
||||||
|
* [#6248](https://github.com/netbox-community/netbox/issues/6248) - Fix table column reconfiguration under Chrome
|
||||||
* [#6252](https://github.com/netbox-community/netbox/issues/6252) - Fix assignment of console port speed values above 19.2kbps
|
* [#6252](https://github.com/netbox-community/netbox/issues/6252) - Fix assignment of console port speed values above 19.2kbps
|
||||||
* [#6254](https://github.com/netbox-community/netbox/issues/6254) - Disable ordering of space column in racks table
|
* [#6254](https://github.com/netbox-community/netbox/issues/6254) - Disable ordering of space column in racks table
|
||||||
* [#6258](https://github.com/netbox-community/netbox/issues/6258) - Fix parent assignment for SiteGroup API serializer
|
* [#6258](https://github.com/netbox-community/netbox/issues/6258) - Fix parent assignment for SiteGroup API serializer
|
||||||
|
@ -2,7 +2,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
// Select or reset table columns
|
// Select or reset table columns
|
||||||
$('#save_tableconfig').click(function(event) {
|
$('#save_tableconfig').click(function(event) {
|
||||||
$('select[name="columns"] option').attr("selected", "selected");
|
$('select[name="columns"] option').prop("selected", "selected");
|
||||||
});
|
});
|
||||||
$('#reset_tableconfig').click(function(event) {
|
$('#reset_tableconfig').click(function(event) {
|
||||||
$('select[name="columns"]').val([]);
|
$('select[name="columns"]').val([]);
|
||||||
|
Reference in New Issue
Block a user