Show processed tags among mentions

This commit is contained in:
Kgothatso Ngako
2026-04-30 18:50:00 +02:00
parent be3f4390ff
commit 54db024b6a

View File

@@ -203,6 +203,24 @@ private fun TextNoteFeedItem(
}
)
}
item {
SuggestionChip(
label = {
Text(
text = if (localNostrEvent.mentions.isNotEmpty()) {
localNostrEvent.mentions.joinToString(",") { it.mentionedPublicKey }
} else {
":-|"
}
)
},
onClick = {
}
)
}
items(
@@ -211,7 +229,8 @@ private fun TextNoteFeedItem(
SuggestionChip(
label = {
Text(
text = tag.joinToString(":")
text = tag.joinToString(":"),
maxLines = 1
)
},
onClick = {