Signed-off-by: William Casarin <jb55@jb55.com>
@ -42,9 +42,11 @@ struct EventView: View {
}
.frame(maxWidth: .infinity, alignment: .leading)
Spacer()
Text("\(event.pow ?? 0)")
.font(.callout)
.foregroundColor(calculate_pow_color(event.pow ?? 0))
if (event.pow ?? 0) >= 10 {
Text(event.content)
.textSelection(.enabled)