Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorDarren Lines <darren@darrenlines.uk>2022-07-13 23:06:57 +0300
committerDarren Lines <darren@darrenlines.uk>2022-07-13 23:06:57 +0300
commit44dbc3722fd91be686e68bc2cac773588c8a9223 (patch)
tree494f7e0fa275bdc917012dd25771f1fd683ee3eb /js
parent3b1a9b84536c8011adbf3da9146860989df8fc20 (diff)
Updated to work with inav#8226MrD_Move-AHI-on-OSD-screen
Diffstat (limited to 'js')
-rw-r--r--js/settings.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/settings.js b/js/settings.js
index 153429eb..054a2771 100644
--- a/js/settings.js
+++ b/js/settings.js
@@ -64,7 +64,7 @@ var Settings = (function () {
} else {
input.empty();
let option = null;
- if (input.data('invert-select') === true) {
+ if (input.data('setting-invert-select') === true) {
for (var ii = s.setting.max; ii >= s.setting.min; ii--) {
option = null;
option = self.fillSelectOption(s, ii);