Skip to content

Commit

Permalink
Fix for missing comma in GTM data (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelkornblum authored May 14, 2024
1 parent ab24615 commit f1e42ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/templates/includes/gtm_datalayer_info.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
initial_page_data = {
{% for k, v in FEATURE_FLAGS.items %}"feature_flag_{{ forloop.counter }}": "{{ k }}: {{ v|lower }}"
{% for k, v in FEATURE_FLAGS.items %}"feature_flag_{{ forloop.counter }}": "{{ k }}: {{ v|lower }}",
{% endfor %}

"page_age_in_days": {% if self.days_since_last_published is not None %}{{ self.days_since_last_published }}{% else %}"NA"{% endif %},
Expand Down

0 comments on commit f1e42ec

Please sign in to comment.