2
0

style(config): fix indentation alignment for EnableBlogs field
All checks were successful
Build and Release / Create Release (push) Successful in 0s
Build and Release / Unit Tests (push) Successful in 3m23s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 5m3s
Build and Release / Lint (push) Successful in 5m15s
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Successful in 2m58s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Successful in 8h5m25s
Build and Release / Build Binaries (amd64, darwin, macos) (push) Successful in 7m21s
Build and Release / Build Binaries (arm64, darwin, macos) (push) Successful in 8m30s
Build and Release / Build Binary (linux/arm64) (push) Successful in 9m6s

This commit is contained in:
2026-02-01 17:08:18 -05:00
parent f933dfc2f3
commit e13cfc6c27

View File

@@ -67,7 +67,7 @@ type ThemeStruct struct {
CustomHomeTagline *config.Value[string]
PinnedOrgDisplayFormat *config.Value[string]
ExploreOrgDisplayFormat *config.Value[string]
EnableBlogs *config.Value[bool]
EnableBlogs *config.Value[bool]
}
type ConfigStruct struct {
@@ -106,7 +106,7 @@ func initDefaultConfig() {
CustomHomeTagline: config.ValueJSON[string]("theme.custom_home_tagline").WithDefault(""),
PinnedOrgDisplayFormat: config.ValueJSON[string]("theme.pinned_org_display_format").WithDefault("condensed"),
ExploreOrgDisplayFormat: config.ValueJSON[string]("theme.explore_org_display_format").WithDefault("list"),
EnableBlogs: config.ValueJSON[bool]("theme.enable_blogs").WithDefault(false),
EnableBlogs: config.ValueJSON[bool]("theme.enable_blogs").WithDefault(false),
},
}
}