Skip to content

Commit

Permalink
The Palette property of theme expects an object not string type.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlorenzi committed Nov 15, 2023
1 parent b91a812 commit a41f4b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def on_config(self, config):
config["theme"]["features"].append("navigation.footer")
config["theme"]["features"].append("content.action.edit")

config["theme"]["palette"] = ""
config["theme"]["palette"] = {}

config["theme"].static_templates.update({"techdocs_metadata.json"})
config["theme"].dirs.append(self.tmp_dir_techdocs_theme.name)
Expand Down

0 comments on commit a41f4b3

Please sign in to comment.