Skip to content

Commit

Permalink
fix(Grid View): 🐛 Forgot to change dotsColour instead of heatmapColour
Browse files Browse the repository at this point in the history
I just copy pasted the colour picker for the heatmap
  • Loading branch information
SkepticMystic committed Aug 1, 2021
1 parent ba0cb54 commit 6e47621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BreadcrumbsSettingTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class BreadcrumbsSettingTab extends PluginSettingTab {
type: "color",
});

dotsColourPicker.value = plugin.settings.heatmapColour;
dotsColourPicker.value = plugin.settings.dotsColour;
dotsColourPicker.addEventListener("change", async () => {
plugin.settings.dotsColour = dotsColourPicker.value;
await plugin.saveSettings();
Expand Down

0 comments on commit 6e47621

Please sign in to comment.