Skip to content

Commit

Permalink
fix: invalid format for recurrence on extra whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Nov 14, 2024
1 parent 039cb53 commit c7fab0f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dooit/ui/widgets/inputs/simple_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def reset(self) -> str:
return self.value

def stop_edit(self) -> None:
self._value = self.value.strip()
try:
self.model_value = self._typecast_value(self.value)
self.model.save()
Expand Down

0 comments on commit c7fab0f

Please sign in to comment.