diff options
author | 2022-11-23 15:32:57 +0100 | |
---|---|---|
committer | 2022-11-23 15:32:57 +0100 | |
commit | 1281a9fd4ab78928cbdc5ac116358ba328015bf9 (patch) | |
tree | 2f181eeece7e7433cb7d6a033d936e90155f8f1a /internal/web/settings-panel.go | |
parent | [feature] Prune timelines once per hour to plug memory leak (#1117) (diff) | |
download | gotosocial-1281a9fd4ab78928cbdc5ac116358ba328015bf9.tar.xz |
[chore/frontend] remove references to unused bundle.js (#1128)
Diffstat (limited to 'internal/web/settings-panel.go')
-rw-r--r-- | internal/web/settings-panel.go | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/internal/web/settings-panel.go b/internal/web/settings-panel.go index 34b4f2258..f38d7522c 100644 --- a/internal/web/settings-panel.go +++ b/internal/web/settings-panel.go @@ -39,14 +39,12 @@ func (m *Module) SettingsPanelHandler(c *gin.Context) { "instance": instance, "stylesheets": []string{ assetsPathPrefix + "/Fork-Awesome/css/fork-awesome.min.css", - assetsPathPrefix + "/dist/_colors.css", - assetsPathPrefix + "/dist/base.css", - assetsPathPrefix + "/dist/profile.css", - assetsPathPrefix + "/dist/status.css", - assetsPathPrefix + "/dist/settings-style.css", - }, - "javascript": []string{ - assetsPathPrefix + "/dist/settings.js", + distPathPrefix + "/_colors.css", + distPathPrefix + "/base.css", + distPathPrefix + "/profile.css", + distPathPrefix + "/status.css", + distPathPrefix + "/settings-style.css", }, + "javascript": []string{distPathPrefix + "/settings.js"}, }) } |