1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 00:35:26 +03:00

Fix i18n interpolation (#4235)

This commit is contained in:
Mark Haslinghuis 2024-10-30 19:36:54 +01:00 committed by GitHub
parent 36e5cf22d8
commit b098a5fcc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -275,7 +275,8 @@ function onOpen(openInfo) {
// reset connecting_to
GUI.connecting_to = false;
gui_log(i18n.getMessage('serialPortOpened', serial.connectionType === 'serial' ? [serial.connectionId] : [openInfo.socketId]));
gui_log(i18n.getMessage('serialPortOpened', [PortHandler.portPicker.selectedPort]));
// save selected port with chrome.storage if the port differs
let result = getConfig('last_used_port');