Add divider in autocomplete.

This commit is contained in:
Marcin Czachursk 2023-02-27 16:49:38 +01:00
parent 88d8a99fcb
commit 96d57073c3
1 changed files with 2 additions and 0 deletions

View File

@ -351,6 +351,7 @@ struct ComposeView: View {
size: .comment)
.padding(.trailing, 8)
}
Divider()
}
} else {
ForEach(textModel.tagsSuggestions, id: \.url) { tag in
@ -361,6 +362,7 @@ struct ComposeView: View {
.font(.callout)
.foregroundColor(self.applicationState.tintColor.color())
}
Divider()
}
}
}