mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-20 10:16:42 -06:00
Fixes #8845: Correct default ASN formatting in table
This commit is contained in:
parent
b91218308b
commit
93527d892b
@ -147,6 +147,7 @@ Where it is desired to limit the range of available VLANs within a group, users
|
|||||||
|
|
||||||
### Bug Fixes (From Beta2)
|
### Bug Fixes (From Beta2)
|
||||||
|
|
||||||
|
* [#8845](https://github.com/netbox-community/netbox/issues/8845) - Correct default ASN formatting in table
|
||||||
* [#8869](https://github.com/netbox-community/netbox/issues/8869) - Fix NoReverseMatch exception when displaying tag w/assignments
|
* [#8869](https://github.com/netbox-community/netbox/issues/8869) - Fix NoReverseMatch exception when displaying tag w/assignments
|
||||||
|
|
||||||
### Other Changes
|
### Other Changes
|
||||||
|
@ -101,7 +101,6 @@ class RIRTable(NetBoxTable):
|
|||||||
|
|
||||||
class ASNTable(NetBoxTable):
|
class ASNTable(NetBoxTable):
|
||||||
asn = tables.Column(
|
asn = tables.Column(
|
||||||
accessor=tables.A('asn_asdot'),
|
|
||||||
linkify=True
|
linkify=True
|
||||||
)
|
)
|
||||||
asn_asdot = tables.Column(
|
asn_asdot = tables.Column(
|
||||||
|
Loading…
Reference in New Issue
Block a user