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
4bc8531 introduced a race condition in which the new base property causes the _srcChanged() observer to be called before the src property is set.
Inside _srcChanged(), the check for this.src ends up being evaluated to false even if src is set on the element, since it hasn't been copied over to this yet.
This breaks doc pages when the src is meant to be something other than the parent directory's name with the .html suffix.
The text was updated successfully, but these errors were encountered:
Can you please cut a new release without using _srcObserver for base? Or find another way of achieving the same effect that doesn't have the same race condition?
4bc8531 introduced a race condition in which the new
base
property causes the_srcChanged()
observer to be called before thesrc
property is set.Inside
_srcChanged()
, the check forthis.src
ends up being evaluated tofalse
even ifsrc
is set on the element, since it hasn't been copied over tothis
yet.This breaks doc pages when the
src
is meant to be something other than the parent directory's name with the.html
suffix.The text was updated successfully, but these errors were encountered: