Show ? if profile stat unavailable

This commit is contained in:
Zed 2019-08-11 23:30:33 +02:00
parent 60986ecc88
commit 88c1cd50a7

View file

@ -8,7 +8,8 @@ proc renderStat(num, class: string; text=""): VNode =
let t = if text.len > 0: text else: class
buildHtml(li(class=class)):
span(class="profile-stat-header"): text capitalizeAscii(t)
span(class="profile-stat-num"): text num
span(class="profile-stat-num"):
text if num.len == 0: "?" else: num
proc renderProfileCard*(profile: Profile): VNode =
buildHtml(tdiv(class="profile-card")):