Skip to content

Commit

Permalink
Fix filters in signed dashboard links
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster committed Nov 20, 2020
1 parent ea5f384 commit 2ae46da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -18,6 +18,8 @@ Bugfixes

- Only consider actual speakers in the "has registered speakers" contribution list filter
(:pr:`4712`, thanks :user:`bpedersen2`)
- Correctly filter events in "Sync with your calendar" links (this fix only applies to newly
generated links) (:pr:`4717`)

Version 2.3.1
-------------
Expand Down
4 changes: 2 additions & 2 deletions indico/modules/users/client/js/dashboard.jsx
Expand Up @@ -19,11 +19,11 @@ document.addEventListener('DOMContentLoaded', () => {
endpoint="users.export_dashboard_ics"
urlParams={{user_id: userId}}
options={[
{key: 'events', text: Translate.string('Events at hand'), queryParams: {linked: 'true'}},
{key: 'events', text: Translate.string('Events at hand'), queryParams: {include: 'linked'}},
{
key: 'categories',
text: Translate.string('Categories'),
queryParams: {categories: 'true'},
queryParams: {include: 'categories'},
},
{key: 'everything', text: Translate.string('Everything'), queryParams: {}},
]}
Expand Down

0 comments on commit 2ae46da

Please sign in to comment.