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
Not a bug, it works perfectly, but not conform to the intention.
The show() method of the Modal component use if ( this.isHidden ) (always returns true, the method exists)
instead of if ( this.isHidden() ) or if ( this._isHidden )
Same for the hide() method with : if ( this.isVisible ) (always returns true, the method exists)
instead of if ( this.isVisible() ) or if ( ! this._isHidden )
The text was updated successfully, but these errors were encountered:
Not a bug, it works perfectly, but not conform to the intention.
The show() method of the Modal component use
if ( this.isHidden )
(always returns true, the method exists)instead of
if ( this.isHidden() )
orif ( this._isHidden )
Same for the hide() method with :
if ( this.isVisible )
(always returns true, the method exists)instead of
if ( this.isVisible() )
orif ( ! this._isHidden )
The text was updated successfully, but these errors were encountered: