Fix user preference selection

This commit is contained in:
Jeremy Stretch 2024-03-25 16:04:06 -04:00
parent 4c92397d71
commit ec364c6fc2

View File

@ -26,8 +26,8 @@ PREFERENCES = {
'ui.htmx_navigation': UserPreference( 'ui.htmx_navigation': UserPreference(
label=_('HTMX Navigation'), label=_('HTMX Navigation'),
choices=( choices=(
('', _('Disabled')),
('true', _('Enabled')), ('true', _('Enabled')),
('false', _('Disabled')),
), ),
default=False default=False
), ),