You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a global active-class and exact-active-class are defined in vue-router or nuxt.js, <b-link> (and all components that inherit from <b-link>) is overriding these by specifically defaulting the props to the Bootstrap V4 class active.
tmorehouse
changed the title
bug[b-link]: Global link-active-class and link-exact-active-class
bug[b-link]: Global active-class and exact-active-class overridden by prop defaults
Jan 4, 2019
Removes the default values (setting to `undefined`) for props `active-class` and `exact-active-class`, so that the globally configured values can be used by default.
Affects `b-link`, `b-button`, `b-dropdown-item` and other components that build on `b-link`.
Fixes#2387
When a global
active-class
andexact-active-class
are defined invue-router
ornuxt.js
,<b-link>
(and all components that inherit from<b-link>
) is overriding these by specifically defaulting the props to the Bootstrap V4 classactive
.Related issue #1967
Changing the props to default to
undefined
would remedy this, but might be constituted as a breaking changeThe text was updated successfully, but these errors were encountered: