Skip to content

Commit 7e4e788

Browse files
author
Daniel Morse
committed
feat: temporarily set lazyload to false, does not work yet in shadow dom
1 parent e2abc17 commit 7e4e788

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/components/bolt-blockquote/src/blockquote.twig

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454

5555
{% set attributes = create_attribute(attributes|default({})) %}
5656

57-
5857
{% set base_class = "c-bolt-blockquote" %}
5958
{% set size = size == false and size is null ? "xlarge" : size | default("xlarge") %}
6059
{% set alignItems = alignItems == false and alignItems is null ? "left" : alignItems | default("left") %}
@@ -81,7 +80,7 @@
8180
{% if logo %}
8281
{% block blockquote_logo %}
8382
<div class="{{ "#{base_class}__logo" }}">
84-
{% include "@bolt/logo.twig" with logo only %}
83+
{% include "@bolt/logo.twig" with logo|merge({"lazyload": false}) only %}
8584
</div>
8685
{% endblock %}
8786
{% endif %}
@@ -101,7 +100,7 @@
101100
{% if author.image %}
102101
<div class="{{ "#{base_class}__footer-item" }}">
103102
<div class="{{ "#{base_class}__image" }}">
104-
{% include "@bolt/image.twig" with author.image only %}
103+
{% include "@bolt/image.twig" with author.image|merge({"lazyload": false}) only %}
105104
</div>
106105
</div>
107106
{% endif %}

0 commit comments

Comments
 (0)