Bootstrap toast aria attribute

Wappler Version : v4.0.0-beta.6

In my learning process of creating AC custom components I stumbled upon a small bug/typo.

Attribute should be aria-live

/dmxAppConnect/dmxBootstrap4Toasts/dmxBootstrap4Toasts.js

  create: function (t) {
    var e =
      '<div class="toast"' +
      (t["min-width"] ? ' style="min-width: ' + t["min-width"] + 'px"' : "") +
      ' role="alert" aria-liva="assertive" aria-atomic="true" data-delay="' +
      (t.delay || this.props.delay) +
      '">';

Fixed now in Wappler 4.0 Beta 9

This topic was automatically closed after 25 hours. New replies are no longer allowed.