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:
parent
36e5cf22d8
commit
b098a5fcc8
1 changed files with 2 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue