tweak(tasklist): Extend limit to 200.

This commit is contained in:
2023-09-24 10:52:08 +03:00
parent ea4942ad3e
commit 57820039a0
3 changed files with 4 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ class TasklistCaller(LeoUI):
class SingleEditor(FastModal):
task: TextInput = TextInput(
label='',
max_length=100,
max_length=200,
required=True
)