From a3ab4e012426bf7ad07d785405a4cb1db6b22b93 Mon Sep 17 00:00:00 2001 From: SystemGlitch Date: Tue, 11 Jun 2024 16:02:48 +0200 Subject: [PATCH] Fix build errors --- .github/workflows/build.yml | 5 ++--- src/basics/database.md | 2 +- src/contributing.md | 2 +- src/home/Home.vue | 12 ++++++------ 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ae4c907..cd50682 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,11 +22,10 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.22 + go-version: '1.22' + cache: false - name: Run spellcheck run: | - echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV - echo "$(go env GOPATH)/bin" >> $GITHUB_PATH go install github.com/client9/misspell/cmd/misspell@latest misspell -error src build: diff --git a/src/basics/database.md b/src/basics/database.md index 4e3ff2e..5aed45f 100644 --- a/src/basics/database.md +++ b/src/basics/database.md @@ -17,7 +17,7 @@ The database connection pool will be available right after the server is created ## Configuration -Very few code is required to get started with databases. There are some [configuration](../configuration.html#database-category) options that you need to change though: +Very few code is required to get started with databases. There are some [configuration](/getting-started/configuration.html#database-category) options that you need to change though: - `database.connection` - `database.host` - `database.port` diff --git a/src/contributing.md b/src/contributing.md index 4f3a9dd..c4618d5 100644 --- a/src/contributing.md +++ b/src/contributing.md @@ -12,7 +12,7 @@ Thank you very much for your time contributing to the Goyave framework! - This is where we settle on a design and discuss about it. - If we decide that we want work to be done on the subject, then an **issue** will be created. This issue will reference the original discussion. Issues can then be used for tracking progress or show to potential contributors how they can help. - If a pull request is opened, it should reference both the issue and the discussion it is associated with. Further comments will now take place on the pull request instead of the original discussion. -- **Assistance requests and support** also belong to the [discussions]((https://github.com/go-goyave/goyave/discussions)) section. +- **Assistance requests and support** also belong to the [discussions](https://github.com/go-goyave/goyave/discussions) section. - **Bugs, typos, improperly working features or code** are reported in the [issues](https://github.com/go-goyave/goyave/issues) section. - When creating an [issue](https://github.com/go-goyave/goyave/issues/new/choose), please use one of the available issue templates. - If there is no template that fits your needs, consider opening a [discussion](https://github.com/go-goyave/goyave/discussions) instead. diff --git a/src/home/Home.vue b/src/home/Home.vue index a9a6e1b..c5d732a 100644 --- a/src/home/Home.vue +++ b/src/home/Home.vue @@ -427,8 +427,8 @@ footer p { display: block; position: absolute; top: 0; - width: calc(100%+4px); - height: calc(100%+4px); + width: calc(100% + 4px); + height: calc(100% + 4px); background: linear-gradient(45deg, var(--vp-c-brand-0) 0%, var(--vp-c-brand-3) 50%, var(--vp-c-brand-2) 100%); inset: -2px; z-index: -1; @@ -454,8 +454,8 @@ footer p { position: absolute; top: 0; left: 0; - width: calc(100%+4px); - height: calc(100%+4px); + width: calc(100% + 4px); + height: calc(100% + 4px); background: radial-gradient(var(--vp-dynamic-border-radius) circle at var(--x) var(--y),var(--vp-c-dynamic-border) 0, transparent 100%); will-change: background; inset: -2px; @@ -466,8 +466,8 @@ footer p { .dynamic-border.VPButton::before { border-radius: 25px; inset: -3px; - width: calc(100%+6px); - height: calc(100%+6px); + width: calc(100% + 6px); + height: calc(100% + 6px); --vp-dynamic-border-radius: 100px; }