add colors to buttons

This commit is contained in:
Evgeny
2021-07-31 14:21:59 +03:00
parent 747a06ea1c
commit 76c4fad663
7 changed files with 11 additions and 11 deletions

View File

@@ -17,8 +17,8 @@ function onNetworkResult(result)
local totalDeaths = json:getValue(result, "object object:Global int:TotalDeaths")
ui:showLines({
"<b>Disease:</b> total"..equals..comma_value(total).." | new"..equals..comma_value(new),
"<b>Deaths:</b> total"..equals..comma_value(totalDeaths).." | new"..equals..comma_value(newDeaths)
"<b>Disease</b> | total"..equals..comma_value(total).." | new"..equals..comma_value(new),
"<b>Deaths</b> | total"..equals..comma_value(totalDeaths).." | new"..equals..comma_value(newDeaths)
})
end