Skip to content

Commit

Permalink
order available columns #14219
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi1693 committed Nov 8, 2023
1 parent 22e474f commit 3be7b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/netbox/tables/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def name(self):

@property
def available_columns(self):
return self._get_columns(visible=False)
return sorted(self._get_columns(visible=False))

@property
def selected_columns(self):
Expand Down

0 comments on commit 3be7b92

Please sign in to comment.