feat(frontend): add user setting to control navigation behaviour (#12669)

follow up to https://github.com/inventree/InvenTree/pull/12585
This commit is contained in:
Matthias Mair
2026-08-20 11:23:12 +10:00
committed by GitHub
parent e7da98069a
commit 36d21fe640
4 changed files with 20 additions and 8 deletions
@@ -296,4 +296,12 @@ USER_SETTINGS: dict[str, InvenTreeSettingsKeyType] = {
'default': False,
'validator': bool,
},
'USE_TABLE_NAVIGATION': {
'name': _('Enable Filtered Detail Navigation'),
'description': _(
'Enable persisting of filtered detail navigation parameters to the view url'
),
'default': True,
'validator': bool,
},
}