Remove toString calls (upgrade to latest pixy version)

This commit is contained in:
2018-04-25 22:15:42 +02:00
parent a6fea3965c
commit 526a7998bb
14 changed files with 18 additions and 18 deletions

View File

@ -31,5 +31,5 @@ component ShopItem(item *arn.ShopItem, popularity int)
.buttons.shop-buttons
button.shop-button-buy.action(data-item-id=item.ID, data-item-name=item.Name, data-price=item.Price, data-trigger="click", data-action="buyItem")
span.shop-item-price= "Buy for " + toString(item.Price)
span.shop-item-price= "Buy for " + fmt.Sprint(item.Price)
Icon("diamond")