diff options
author | 2024-12-18 17:47:17 +0800 | |
---|---|---|
committer | 2024-12-18 10:47:17 +0100 | |
commit | f78002f915eeaaf455873106b289c96b8c4afb5d (patch) | |
tree | 03b535df867cd1aa7dccab419de730504fa24415 /internal/web/domain-blocklist.go | |
parent | update gruf/go-ffmpreg to v0.6.4 (#3627) (diff) | |
download | gotosocial-f78002f915eeaaf455873106b289c96b8c4afb5d.tar.xz |
[bugfix] Load instance-wide custom css in page stylesheets template (#3601)
* [bugfix] Load instance-wide custom css in page stylesheets template
* [chore] remove redunt import
Diffstat (limited to 'internal/web/domain-blocklist.go')
-rw-r--r-- | internal/web/domain-blocklist.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/web/domain-blocklist.go b/internal/web/domain-blocklist.go index 7b6710049..5d631e0f7 100644 --- a/internal/web/domain-blocklist.go +++ b/internal/web/domain-blocklist.go @@ -67,7 +67,7 @@ func (m *Module) domainBlockListGETHandler(c *gin.Context) { Template: "domain-blocklist.tmpl", Instance: instance, OGMeta: apiutil.OGBase(instance), - Stylesheets: []string{cssFA, instanceCustomCSSPath}, + Stylesheets: []string{cssFA}, Javascript: []string{jsFrontend}, Extra: map[string]any{"blocklist": domainBlocks}, } |