2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 05:25:42 +00:00

Merge branch 'master' of https://github.com/inventree/InvenTree into plugin-2037

This commit is contained in:
Matthias
2021-10-30 18:23:09 +02:00
260 changed files with 72198 additions and 5878 deletions

View File

@ -1064,7 +1064,14 @@ class InvenTreeUserSetting(BaseInvenTreeSetting):
'description': _('Use the escape key to close modal forms'),
'default': False,
'validator': bool,
}
},
'STICKY_HEADER': {
'name': _('Fixed Navbar'),
'description': _('InvenTree navbar position is fixed to the top of the screen'),
'default': False,
'validator': bool,
},
}
class Meta: