Skip to content

Commit

Permalink
Merge pull request #383 from AshMartian/temp-spelling
Browse files Browse the repository at this point in the history
Correct Celsius typo, resolves #316
  • Loading branch information
kercre123 authored Sep 2, 2024
2 parents 8f92694 + 19dd26d commit 3fa851a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chipper/webroot/sdkapp/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ function getCurrentSettings() {
if (`${tempFormatS}` == "true") {
var tempFormatT = "Fahrenheit";
} else {
var tempFormatT = "Celcius";
var tempFormatT = "Celsius";
}
if (`${buttonS}` == 0) {
var buttonT = "Hey Vector";
Expand Down
4 changes: 2 additions & 2 deletions chipper/webroot/sdkapp/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ <h2 class="center">Temp Format</h2>
<div id="currentTempFormat" class="center"></div>
<div style="text-align: left;" class="center">
<label>
<input type="radio" name="temp" id="Celcius" value="Celcius"
onclick="sendForm('/api-sdk/temp_c')">Celcius<br>
<input type="radio" name="temp" id="Celsius" value="Celsius"
onclick="sendForm('/api-sdk/temp_c')">Celsius<br>
</label>
<label>
<input type="radio" name="temp" id="Fahrenheit" value="Fahrenheit"
Expand Down

0 comments on commit 3fa851a

Please sign in to comment.