Closed timothyarmes closed 3 weeks ago
In v2.40 the rotator screens are broken.
I can't currently push to the project to make a PR, I don't wish to fork it, so:
For the tab bug, in user_event.html, line 89, the rotator_sreen_index parameter needs adding:
user_event.html
card_url=url_for('user-rotator', event_uniq_id=user_event.uniq_id, rotator_id=rotator.id, rotator_screen_index=0),
For the rotation bug, in user_screen.html the index needs incrementing:
user_screen.html
hx-get="{{ url_for('user-rotator', event_uniq_id=user_event.uniq_id, rotator_id=rotator.id, rotator_screen_index=rotator_screen_index+1) }}"
Fixed in 2.4.1, thanks.
In v2.40 the rotator screens are broken.
I can't currently push to the project to make a PR, I don't wish to fork it, so:
For the tab bug, in
user_event.html
, line 89, the rotator_sreen_index parameter needs adding:card_url=url_for('user-rotator', event_uniq_id=user_event.uniq_id, rotator_id=rotator.id, rotator_screen_index=0),
For the rotation bug, in
user_screen.html
the index needs incrementing:hx-get="{{ url_for('user-rotator', event_uniq_id=user_event.uniq_id, rotator_id=rotator.id, rotator_screen_index=rotator_screen_index+1) }}"