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
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
fix(layouts): do not replace invalid attribute values
Do not modify attribute values with default/fallback values; only update the attrs hashmap with the fallback value. This allows components using matching directives to not lose the originating value. e.g.
```html
< ui-layout layout="/api/sidebar.html" />
```
will become
```html
< ui-layout layout="/api/sidebar.html" class="layout-row" />
```
0 commit comments