Skip to content

Commit

Permalink
Capitalize
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-vorobiov committed Sep 21, 2024
1 parent e1943b1 commit 34a9088
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion evolve_analytics.meta.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Evolve Analytics
// @namespace http://tampermonkey.net/
// @version 0.3.2
// @version 0.3.3
// @description Track and see detailed information about your runs
// @author Sneed
// @match https://pmotschmann.github.io/Evolve/
Expand Down
2 changes: 1 addition & 1 deletion src/ui/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { HistoryManager } from "../history";

function addMainToggle(config: ConfigManager) {
waitFor("#settings").then(() => {
const toggleNode = makeToggle("Record runs", config.recordRuns, (checked) => { config.recordRuns = checked; });
const toggleNode = makeToggle("Record Runs", config.recordRuns, (checked) => { config.recordRuns = checked; });
toggleNode.insertAfter("#settings > .switch.setting:last");
});
}
Expand Down

0 comments on commit 34a9088

Please sign in to comment.