Skip to content

Commit

Permalink
minor change to fix case on configuration property to match the refer…
Browse files Browse the repository at this point in the history
…ence in the readme
  • Loading branch information
qtzar committed Sep 21, 2023
1 parent e5a3db4 commit 1d2bbfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ abstract class PageViewModel(protected val generatorContext: GeneratorContext) {
val includeKatex = flexmarkConfig.selectedExtensionMap.containsKey("GitLab")

val configuration = generatorContext.workspace.views.configuration.properties
val includeTreeview = configuration.getOrDefault("generatr.nav.nestGroups", "false").toBoolean()
val includeTreeview = configuration.getOrDefault("generatr.nav.nestgroups", "false").toBoolean()

abstract val url: String
abstract val pageSubTitle: String
Expand Down

0 comments on commit 1d2bbfa

Please sign in to comment.