mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-23 22:38:08 +00:00
Fix status embed
This commit is contained in:
parent
f08c90f8a0
commit
017275ec69
2 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@ public struct StatusEmbeddedView: View {
|
||||||
showActions: false))
|
showActions: false))
|
||||||
.accessibilityLabel(status.content.asRawText)
|
.accessibilityLabel(status.content.asRawText)
|
||||||
.environment(\.isCompact, true)
|
.environment(\.isCompact, true)
|
||||||
|
.environment(\.isStatusFocused, false)
|
||||||
}
|
}
|
||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,7 +97,7 @@ public struct StatusRowView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if isFocused {
|
if isFocused, !isCompact {
|
||||||
StatusRowDetailView(viewModel: viewModel)
|
StatusRowDetailView(viewModel: viewModel)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue