2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-09-14 06:31:27 +00:00

Sticky headers (#9022)

* Add user setting

* Use value of user setting

* Fix user for global

* Stickiness

* Updated docs
This commit is contained in:
Oliver
2025-07-29 10:43:36 +10:00
committed by GitHub
parent d01869a917
commit 0ef5b12747
4 changed files with 19 additions and 0 deletions

View File

@@ -185,6 +185,12 @@ USER_SETTINGS: dict[str, InvenTreeSettingsKeyType] = {
'default': False,
'validator': bool,
},
'STICKY_TABLE_HEADER': {
'name': _('Fixed Table Headers'),
'description': _('Table headers are fixed to the top of the table'),
'default': False,
'validator': bool,
},
'ICONS_IN_NAVBAR': {
'name': _('Navigation Icons'),
'description': _('Display icons in the navigation bar'),