Author SHA1 Message Date
renovate-bot 50d03ee3d0 chore(deps): Update actions/setup-go action to v7
CI / build (pull_request) Successful in 51s
2026-07-16 03:01:42 +00:00
2 changed files with 2 additions and 12 deletions
+2 -2
View File
@@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-go@v5 - uses: actions/setup-go@v7.0.0
with: with:
go-version: '1.27' go-version: '1.23'
- name: Build WASM - name: Build WASM
run: GOOS=js GOARCH=wasm go build ./... run: GOOS=js GOARCH=wasm go build ./...
- name: Build Host - name: Build Host
-10
View File
@@ -175,13 +175,3 @@ func (v View) TextDecoration(value string) View {
v.e.Get("style").Call("setProperty", "text-decoration", value) v.e.Get("style").Call("setProperty", "text-decoration", value)
return v return v
} }
func (v View) LetterSpacing(spacing string) View {
v.e.Get("style").Call("setProperty", "letter-spacing", spacing)
return v
}
func (v View) LineHeight(height string) View {
v.e.Get("style").Call("setProperty", "line-height", height)
return v
}