1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 00:05:22 +03:00

Auto merged - #2622 at Sat, 09 Oct 2021 22:17:06 GMT

Fixed text for the PID profile reset button.
This commit is contained in:
J Blackman 2021-10-10 09:17:06 +11:00 committed by GitHub
commit 16acc68182
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -1364,7 +1364,7 @@ TABS.pid_tuning.initialize = function (callback) {
updatePidDisplay();
});
$('#resetProfile').on('click', function(){
$('#resetPidProfile').on('click', function(){
self.updating = true;
self.sliderRetainConfiguration = true;
@ -1372,7 +1372,7 @@ TABS.pid_tuning.initialize = function (callback) {
self.refresh(function () {
self.updating = false;
GUI.log(i18n.getMessage('pidTuningProfileReset'));
GUI.log(i18n.getMessage('pidTuningPidProfileReset'));
});
});
});