Skip to content

Commit

Permalink
add home redirect (in GUI)
Browse files Browse the repository at this point in the history
  • Loading branch information
damongolding committed Jan 17, 2025
1 parent 1a0bdf0 commit 014591a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/public/assets/css/kiosk.css
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ form {
height: 100%;
padding: 0;
margin: 0;
overflow-y: scroll;
overflow-y: auto;
display: -moz-box;
display: flex;
-moz-box-orient: vertical;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/css/redirects.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
height: 100%;
padding: 0;
margin: 0;
overflow-y: scroll;
overflow-y: auto;
display: flex;
flex-direction: column;

Expand Down
1 change: 1 addition & 0 deletions internal/templates/partials/redirects.templ
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ templ Redirects(redirects []config.Redirect) {
<div id="redirects-container">
<div class="redirects">
<div class="redirects--shadow">
<a href="/">Home</a>
for _ , redirect := range redirects {
<a href={ templ.SafeURL(redirect.Name) }>{ redirect.Name }</a>
}
Expand Down
2 changes: 1 addition & 1 deletion taskfile.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: "3"
env:
VERSION: 0.15.0
VERSION: 0.15.1-beta.1

includes:
frontend:
Expand Down

0 comments on commit 014591a

Please sign in to comment.