Skip to content

Commit

Permalink
Changed reading of activeResource param in html
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoJokhan committed Apr 28, 2023
1 parent 9e09f78 commit e454c16
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ <h4> Activiteit op deze website {{data.nielsisgek}}
</h4>
<ul class="user-activity-list">

{% if data.widget.activeResource.activity %}
{% for activity in data.widget.activeResource.activity %}
{% if data.activeResource.activity %}
{% for activity in data.activeResource.activity %}
{% if data.global.siteId === activity.site.id %}
{% set counterThisSite = counterThisSite + 1 %}

Expand All @@ -25,8 +25,8 @@ <h4> Activiteit op deze website {{data.nielsisgek}}
<br />
<h4> Activiteit op andere websites</h4>
<ul class="user-activity-list">
{% if data.widget.activeResource.activity %}
{% for activity in data.widget.activeResource.activity %}
{% if data.activeResource.activity %}
{% for activity in data.activeResource.activity %}
{% if data.global.siteId !== activity.site.id %}
{% set counterOtherSites = counterOtherSites + 1 %}

Expand Down

1 comment on commit e454c16

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Published new image: openstad/frontend:bugfix-no-activities-on-account-tab-1-e454c16

Please sign in to comment.