This commit is contained in:
Evgeny
2021-07-31 09:44:13 +03:00
parent 46407b5e78
commit 747a06ea1c
4 changed files with 17 additions and 4 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