Skip to content

Commit eb91934

Browse files
committed
Fixes #10745: Correct display of status field in clusters list
1 parent 0165476 commit eb91934

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/release-notes/version-3.3.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* [#10646](https://github.com/netbox-community/netbox/issues/10646) - Fix filtering of power feed by power panel when connecting a cable
2020
* [#10655](https://github.com/netbox-community/netbox/issues/10655) - Correct display of assigned contacts in object tables
2121
* [#10712](https://github.com/netbox-community/netbox/issues/10712) - Fix ModuleNotFoundError exception when generating API schema under Python 3.9+
22+
* [#10745](https://github.com/netbox-community/netbox/issues/10745) - Correct display of status field in clusters list
2223
* [#10746](https://github.com/netbox-community/netbox/issues/10746) - Add missing status attribute to cluster view
2324

2425
---

netbox/virtualization/tables/clusters.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ class ClusterTable(TenancyColumnsMixin, ContactsColumnMixin, NetBoxTable):
6464
group = tables.Column(
6565
linkify=True
6666
)
67+
status = columns.ChoiceFieldColumn()
6768
site = tables.Column(
6869
linkify=True
6970
)

0 commit comments

Comments
 (0)