Skip to content

Commit

Permalink
add leaf instead of the bomb as star button
Browse files Browse the repository at this point in the history
  • Loading branch information
krustowski committed Sep 23, 2024
1 parent 8e297ba commit 87c47d0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
#

APP_NAME=littr
APP_VERSION=0.40.11
APP_VERSION=0.40.12
GOLANG_VERSION=1.23
2 changes: 1 addition & 1 deletion api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"name": "MIT",
"url": "https://github.com/krustowski/littr/blob/master/LICENSE"
},
"version": "0.40.11"
"version": "0.40.12"
},
"host": "www.littr.eu",
"basePath": "/api/v1",
Expand Down
2 changes: 1 addition & 1 deletion pkg/backend/router.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @title littr
// @version 0.40.11
// @version 0.40.12
// @description a simple nanoblogging platform as PWA built on go-app framework
// @termsOfService https://littr.eu/tos

Expand Down
3 changes: 2 additions & 1 deletion pkg/frontend/flow.go
Original file line number Diff line number Diff line change
Expand Up @@ -1668,7 +1668,8 @@ func (c *flowContent) Render() app.UI {
app.B().Title("reaction count").Text(post.ReactionCount).Class("left-padding"),
app.Button().Title("increase the reaction count").ID(key).Class("transparent circle").OnClick(c.onClickStar).Disabled(c.buttonDisabled).Attr("touch-action", "none").Body(
//app.I().Text("ac_unit"),
app.I().Text("bomb"),
//app.I().Text("bomb"),
app.I().Text("nest_eco_leaf"),
),
),
),
Expand Down

0 comments on commit 87c47d0

Please sign in to comment.