Skip to content

Commit 87c47d0

Browse files
committedSep 23, 2024·
add leaf instead of the bomb as star button
1 parent 8e297ba commit 87c47d0

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed
 

‎.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
#
44

55
APP_NAME=littr
6-
APP_VERSION=0.40.11
6+
APP_VERSION=0.40.12
77
GOLANG_VERSION=1.23

‎api/swagger.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"name": "MIT",
1414
"url": "https://github.com/krustowski/littr/blob/master/LICENSE"
1515
},
16-
"version": "0.40.11"
16+
"version": "0.40.12"
1717
},
1818
"host": "www.littr.eu",
1919
"basePath": "/api/v1",

‎pkg/backend/router.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @title littr
2-
// @version 0.40.11
2+
// @version 0.40.12
33
// @description a simple nanoblogging platform as PWA built on go-app framework
44
// @termsOfService https://littr.eu/tos
55

‎pkg/frontend/flow.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1668,7 +1668,8 @@ func (c *flowContent) Render() app.UI {
16681668
app.B().Title("reaction count").Text(post.ReactionCount).Class("left-padding"),
16691669
app.Button().Title("increase the reaction count").ID(key).Class("transparent circle").OnClick(c.onClickStar).Disabled(c.buttonDisabled).Attr("touch-action", "none").Body(
16701670
//app.I().Text("ac_unit"),
1671-
app.I().Text("bomb"),
1671+
//app.I().Text("bomb"),
1672+
app.I().Text("nest_eco_leaf"),
16721673
),
16731674
),
16741675
),

0 commit comments

Comments
 (0)
Please sign in to comment.