-
Notifications
You must be signed in to change notification settings - Fork 768
bug(fxLayout, universal): layout direction is wrong #423
Comments
There are known issues with current @angular/flex-layout + Universal
|
@ThomasBurleson There are two reasons I didn't file this under #373:
The HTML template looks like this:
and the top-level div gets rendered with the following CSS with Universal:
There are no other |
@CaerusKaru - #419 fixed an performance/rendering issue where each/every #419 is an issue with Universal when using the Responsive API. Your usage is with the Static API... which should render the correct CSS.
|
@CaerusKaru |
@alirezamirian While I'd like to believe that it's an error on my end, and thus easily correctable, that doesn't explain why the rendering works with versions of flex-layout prior to PR #419 |
Here's the (revised) post-mortem on this issue. The issue only comes up when there is a In the process of performing this action, In constructing the internal representation of the DOM for I've sent in PR #466 to correct this. |
Closed by 8dcae02 |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
When using Universal rendering, fxLayout gets picked up, but wrongly applied as
flex-direction=row
instead offlex-direction=column
.Confirmed that this only happens on the latest commit, which means a wire got crossed somewhere in the refactoring for NgClass and NgStyle (e461d17).
The text was updated successfully, but these errors were encountered: