Skip to content

Commit

Permalink
Show analog sensor board (ASB) support for firmware in the about page
Browse files Browse the repository at this point in the history
  • Loading branch information
salbahra committed Aug 5, 2023
1 parent 8ad169d commit 73d9429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/js/main.js
Expand Up @@ -10366,7 +10366,7 @@ var showAbout = ( function() {
page.find( ".hardware" ).toggleClass( "hidden", showHardware ).text( getHWVersion() + getHWType() );
page.find( ".hardwareLabel" ).toggleClass( "hidden", showHardware );

page.find( ".firmware" ).text( getOSVersion() + getOSMinorVersion() );
page.find( ".firmware" ).text( getOSVersion() + getOSMinorVersion() + ( checkAnalogSensorAvail() ? " - ASB" : "" ) );

page.one( "pagehide", function() {
page.detach();
Expand Down

0 comments on commit 73d9429

Please sign in to comment.