Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
System-Glitch committed Jun 11, 2024
1 parent 85fc7c9 commit a3ab4e0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/basics/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion src/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
12 changes: 6 additions & 6 deletions src/home/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
}
Expand Down

0 comments on commit a3ab4e0

Please sign in to comment.