dmxBootstrap4Popovers.js Syntax Error at row 15

Hi,

When I updated wappler to 2.1.1, I am receiving the following error on dmxBootstrap4Popovers.js:
ParsingError: UnexpectedToken ‘’

Thanks

I removed the error by changing it to the below, but I did not test if the popover are now working well:

Hi Elias,
@patrick will fix this for the next update

Meanwhile you can fix it yourself by changing this:

title: function() {
      return this.getAttribute('popover-title') '';
    }

to:

title: function() {
      return this.getAttribute('popover-title') || '';
    },
1 Like