Skip to content

Commit

Permalink
fixup! Uncrispify DetentionProfileForm
Browse files Browse the repository at this point in the history
Turns out the 'input-align' css class didnt do anything
  • Loading branch information
stveit committed Nov 14, 2024
1 parent 75e00ea commit 7e89add
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions python/nav/web/arnold/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,7 @@ def __init__(self, *args, **kwargs):
fields=[self['keep_closed']], css_classes='medium-4'
),
FormColumn(
fields=[
FormCheckBox(
self['exponential'],
css_classes='input-align',
)
],
fields=[FormCheckBox(self['exponential'])],
css_classes='medium-4',
),
FormDiv(css_classes='medium-4 columns'),
Expand All @@ -259,7 +254,7 @@ def __init__(self, *args, **kwargs):
],
css_class='secondary',
),
FormCheckBox(self['active'], css_classes='input-align'),
FormCheckBox(self['active']),
],
submit_field=SubmitField(value='Save'),
)
Expand Down

0 comments on commit 7e89add

Please sign in to comment.