Make reblog text gray
This commit is contained in:
parent
2d9178ad07
commit
e217fc6215
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ struct PostView: View {
|
||||||
|
|
||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
if post.isReblogged() {
|
if post.isReblogged() {
|
||||||
Text("Reblogged from " + post.originalUsername!)
|
Text(post.username + " reblogged from " + post.originalUsername!).foregroundColor(.gray)
|
||||||
}
|
}
|
||||||
|
|
||||||
if post.getTitle() != nil {
|
if post.getTitle() != nil {
|
||||||
|
|
Reference in a new issue