Compare commits

...

2 Commits

Author SHA1 Message Date
Damillora 03dfacc3df fix: default route 2023-08-30 21:23:08 +07:00
Damillora 2eaf696b53 fix: tags not bound correctly 2023-08-30 21:18:15 +07:00
3 changed files with 3 additions and 4 deletions

View File

@ -52,7 +52,7 @@ func Start() {
g.StaticFile("/", "./web/static/index.html") g.StaticFile("/", "./web/static/index.html")
g.Static("/_app", "./web/static/_app") g.Static("/_app", "./web/static/_app")
g.Static("/data", config.CurrentConfig.DataDirectory) g.Static("/data", config.CurrentConfig.DataDirectory)
g.Use(cors.Default()) g.Use(cors.Default())
InitializeRoutes(g) InitializeRoutes(g)

View File

@ -1,8 +1,6 @@
package app package app
import ( import (
"net/http"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
) )
@ -11,5 +9,5 @@ func InitializeFrontendRoutes(g *gin.Engine) {
} }
func frontendHome(c *gin.Context) { func frontendHome(c *gin.Context) {
c.Redirect(http.StatusFound, "/") c.File("./web/static/index.html")
} }

View File

@ -108,6 +108,7 @@
<label for="tags" class="label">Tags</label> <label for="tags" class="label">Tags</label>
<div class="control" id="tags"> <div class="control" id="tags">
<Tags <Tags
tags={form.tags}
addKeys={[9, 32]} addKeys={[9, 32]}
on:tags={onTagChange} on:tags={onTagChange}
autoComplete={onAutocomplete} autoComplete={onAutocomplete}