diff --git a/CHANGELOG.md b/CHANGELOG.md index a4f6903..7554a7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 3.4.1 (13. March 2024) + ++ [#84](https://github.com/nadar/quill-delta-parser/issues/84) Allow align `left` as possible value. + ## 3.4.0 (14. September 2023) > Please be aware that this release may impact the way Quill data is displayed in your frontend. Checkout the [upgrade document](UPGRADE.md) for more details. diff --git a/src/listener/Align.php b/src/listener/Align.php index 9b00ff4..c40d6a3 100644 --- a/src/listener/Align.php +++ b/src/listener/Align.php @@ -18,7 +18,7 @@ class Align extends BlockListener /** * @var array Supported alignments. */ - public $alignments = ['center', 'right', 'justify']; + public $alignments = ['center', 'right', 'justify', 'left']; /** * {@inheritDoc}