Problem/Motivation
templates/views-view-fullcalendar.html.twig
There is this code :
<div id="bottom-buttons fc-button-group">
{% if showAddEvent %}
And a ID can't have white space
Proposed resolution
Add class and up the test
{% if showAddEvent %}
<div id="bottom-buttons" class="fc-button-group">
Issue fork fullcalendar_view-3186452
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
mingsongThanks Robby.
Good pick up.
I think it would be better to use 'class' instead of 'id', as there might be multiple calendar view in one page.
Comment #6
mingsongMerged.
Comment #7
mingsongComment #8
mingsongReleased with 5.0.6
Comment #9
robby78 commentedHello, thks for the correction