mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 21:15:41 +00:00
Adds setting to close forms using escape key
- Configurable per user - Default = false (to preserve behavior)
This commit is contained in:
@ -981,6 +981,13 @@ class InvenTreeUserSetting(BaseInvenTreeSetting):
|
||||
'default': True,
|
||||
'validator': bool,
|
||||
},
|
||||
|
||||
'FORMS_CLOSE_USING_ESCAPE': {
|
||||
'name': _('Escape Key Closes Forms'),
|
||||
'description': _('Use the escape key to close modal forms'),
|
||||
'default': False,
|
||||
'validator': bool,
|
||||
}
|
||||
}
|
||||
|
||||
class Meta:
|
||||
|
Reference in New Issue
Block a user