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

order available columns #14219

This commit is contained in:
Abhimanyu Saharan
2023-11-08 23:18:39 +05:30
committed by Jeremy Stretch
parent 60e98324c3
commit b0f2de5bd7

View File

@ -119,7 +119,7 @@ class BaseTable(tables.Table):
@property
def available_columns(self):
return self._get_columns(visible=False)
return sorted(self._get_columns(visible=False))
@property
def selected_columns(self):