Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"pimcore/ecommerce-framework-bundle": "*",
"pimcore/web-to-print-bundle": "*",
"pimcore/newsletter-bundle": "*",
"pimcore/quill-bundle": "*",
"symfony/runtime": "^6.2",
"symfony/intl": "^6.2",
"symfony/dotenv": "^6.2",
Expand Down
4 changes: 2 additions & 2 deletions config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Pimcore\Bundle\CustomReportsBundle\PimcoreCustomReportsBundle;
use Pimcore\Bundle\ApplicationLoggerBundle\PimcoreApplicationLoggerBundle;
use Pimcore\Bundle\PersonalizationBundle\PimcorePersonalizationBundle;
use Pimcore\Bundle\TinymceBundle\PimcoreTinymceBundle;
use Pimcore\Bundle\QuillBundle\PimcoreQuillBundle;
use Pimcore\Bundle\GenericExecutionEngineBundle\PimcoreGenericExecutionEngineBundle;

return [
Expand All @@ -40,7 +40,7 @@
PimcoreGoogleMarketingBundle::class => ['all' => true],
PimcoreApplicationLoggerBundle::class => ['all' => true],
PimcoreWebToPrintBundle::class => ['all' => true],
PimcoreTinymceBundle::class => ['all' => true],
PimcoreQuillBundle::class => ['all' => true],
PimcoreStaticRoutesBundle::class => ['all' => true],
PimcoreNewsletterBundle::class => ['all' => true],
PimcoreWordExportBundle::class => ['all' => true],
Expand Down
3 changes: 2 additions & 1 deletion templates/snippets/standard-teaser.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
<h4 class="card-title pricing-card-title text-uppercase">{{ pimcore_input('title' ~ suffix) }}</h4>
<p class="card-text">
{{
pimcore_wysiwyg('text' ~ suffix, {
pimcore_wysiwyg('text' ~ suffix, {
height: 100,
enterMode: 2,
theme: "bubble"
})
}}
</p>
Expand Down
Loading