Skip to content

Commit 9707eb6

Browse files
committed
fix(segments): 🐛 Color Fix in segments picker
1 parent 6c2a552 commit 9707eb6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

home/templates/home/segment_page.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,37 +131,37 @@
131131
{% for segment in page.segments %}
132132
{% if segment.block_type == 'detail_segment' %}
133133
<div>
134-
{% include 'segments/segment.html' %}
134+
{% include 'segments/segment.html' with block=page %}
135135
</div>
136136
{% endif %}
137137
{% if segment.block_type == 'video_segment' %}
138138
<div>
139-
{% include 'segments/video.html' %}
139+
{% include 'segments/video.html' with block=page %}
140140
</div>
141141
{% endif %}
142142
{% if segment.block_type == 'information_segment' %}
143143
<div>
144-
{% include 'segments/information_bar.html' %}
144+
{% include 'segments/information_bar.html' with block=page %}
145145
</div>
146146
{% endif %}
147147
{% if segment.block_type == 'sponsor_segment' %}
148148
<div>
149-
{% include 'segments/sponsor.html' %}
149+
{% include 'segments/sponsor.html' with block=page %}
150150
</div>
151151
{% endif %}
152152
{% if segment.block_type == 'maps_segment' %}
153153
<div>
154-
{% include 'segments/maps.html' %}
154+
{% include 'segments/maps.html' with block=page %}
155155
</div>
156156
{% endif %}
157157
{% if segment.block_type == 'pricing_segment' %}
158158
<div>
159-
{% include 'segments/pricing.html' %}
159+
{% include 'segments/pricing.html' with block=page %}
160160
</div>
161161
{% endif %}
162162
{% if segment.block_type == 'schedule_segment' %}
163163
<div>
164-
{% include 'segments/schedule.html' %}
164+
{% include 'segments/schedule.html' with block=page %}
165165
</div>
166166
{% endif %}
167167
{% endfor %}

0 commit comments

Comments
 (0)