diff --git a/locales/en/messages.json b/locales/en/messages.json index f3865ad26a..69743aaba1 100755 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -6724,6 +6724,10 @@ "message": "Number of bands", "description": "Text of one of the fields of the VTX Table element in the VTX tab" }, + "vtxTableBandsHelp": { + "message": "This defines the number of bands required for the VTX", + "description": "Help for the number of bands field of the VTX Table element in the VTX tab" + }, "vtxTableChannels": { "message": "Number of channels by band", "description": "Text of one of the fields of the VTX Table element in the VTX tab" diff --git a/src/js/debug.js b/src/js/debug.js index caa5f7a6b2..1c7eb8fe0d 100644 --- a/src/js/debug.js +++ b/src/js/debug.js @@ -859,7 +859,7 @@ function update() { 'debug[5]': 'TPA Argument (Wing)', }; - DEBUG.enableFields.splice(DEBUG.enableFields.indexOf("Gyro"), 0, "Attitude"); + DEBUG.enableFields.splice(DEBUG.enableFields.indexOf("Gyro") + 1, 0, "Attitude"); } }