Fixes
This commit is contained in:
parent
94172cef27
commit
47d54fd9e6
|
@ -73,10 +73,9 @@ public struct AppAccountsSelectorView: View {
|
|||
Group {
|
||||
if let account = currentAccount.account, !currentAccount.isLoadingAccount {
|
||||
AvatarView(account: account, config: avatarConfig)
|
||||
.padding(.leading, 16)
|
||||
} else {
|
||||
AvatarView(account: nil, config: avatarConfig)
|
||||
.redacted(reason: .placeholder)
|
||||
.allowsHitTesting(false)
|
||||
ProgressView()
|
||||
}
|
||||
}.overlay(alignment: .topTrailing) {
|
||||
if !currentAccount.followRequests.isEmpty || showNotificationBadge, accountCreationEnabled {
|
||||
|
|
|
@ -32,16 +32,18 @@ public struct StatusRowView: View {
|
|||
|
||||
public var body: some View {
|
||||
HStack(spacing: 0) {
|
||||
HStack(spacing: 3) {
|
||||
ForEach(0..<indentationLevel, id: \.self) {_ in
|
||||
Rectangle()
|
||||
.fill(theme.tintColor)
|
||||
.frame(width: 2)
|
||||
.accessibilityHidden(true)
|
||||
if !isCompact {
|
||||
HStack(spacing: 3) {
|
||||
ForEach(0..<indentationLevel, id: \.self) {_ in
|
||||
Rectangle()
|
||||
.fill(theme.tintColor)
|
||||
.frame(width: 2)
|
||||
.accessibilityHidden(true)
|
||||
}
|
||||
}
|
||||
if indentationLevel > 0 {
|
||||
Spacer(minLength: 8)
|
||||
}
|
||||
}
|
||||
if indentationLevel > 0 {
|
||||
Spacer(minLength: 8)
|
||||
}
|
||||
VStack(alignment: .leading) {
|
||||
if viewModel.isFiltered, let filter = viewModel.filter {
|
||||
|
|
Loading…
Reference in New Issue