mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 22:54:12 +00:00
Merge pull request #1781 from ealmloff/fix-non-string-layout-tui
Fix non string layout attributes in rink
This commit is contained in:
commit
60f6ef8402
1 changed files with 2 additions and 2 deletions
|
@ -92,10 +92,10 @@ impl State for TaffyLayout {
|
|||
attribute, value, ..
|
||||
} in attributes
|
||||
{
|
||||
if let Some(text) = value.as_text() {
|
||||
if value.as_custom().is_none() {
|
||||
apply_layout_attributes_cfg(
|
||||
&attribute.name,
|
||||
text,
|
||||
&value.to_string(),
|
||||
&mut style,
|
||||
&LayoutConfigeration {
|
||||
border_widths: BorderWidths {
|
||||
|
|
Loading…
Reference in a new issue