diff options
author | adev <adev2000@gmail.com> | 2019-10-27 18:51:32 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-11-27 14:38:35 +0100 |
commit | 8197f08266256f55767666b90be47f585c7a6d28 (patch) | |
tree | 528d86ecd9fca0903c6747480474d251a19c817d /src/Wallabag/AnnotationBundle/Form | |
parent | a4064347015e169b309153f214e2bb5ec17fde21 (diff) | |
download | wallabag-8197f08266256f55767666b90be47f585c7a6d28.tar.gz wallabag-8197f08266256f55767666b90be47f585c7a6d28.tar.zst wallabag-8197f08266256f55767666b90be47f585c7a6d28.zip |
API return an error with empty quote
Fix #4137
Diffstat (limited to 'src/Wallabag/AnnotationBundle/Form')
-rw-r--r-- | src/Wallabag/AnnotationBundle/Form/NewAnnotationType.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/AnnotationBundle/Form/NewAnnotationType.php b/src/Wallabag/AnnotationBundle/Form/NewAnnotationType.php index c73c3ded..aac6445c 100644 --- a/src/Wallabag/AnnotationBundle/Form/NewAnnotationType.php +++ b/src/Wallabag/AnnotationBundle/Form/NewAnnotationType.php | |||
@@ -18,6 +18,7 @@ class NewAnnotationType extends AbstractType | |||
18 | ]) | 18 | ]) |
19 | ->add('quote', null, [ | 19 | ->add('quote', null, [ |
20 | 'empty_data' => null, | 20 | 'empty_data' => null, |
21 | 'trim' => false, | ||
21 | ]) | 22 | ]) |
22 | ->add('ranges', CollectionType::class, [ | 23 | ->add('ranges', CollectionType::class, [ |
23 | 'entry_type' => RangeType::class, | 24 | 'entry_type' => RangeType::class, |