fixed gridsquare handler

This commit is contained in:
dj2ls 2023-01-07 12:01:54 +01:00
parent 44395c32f4
commit ab96c8bc51

View file

@ -1402,7 +1402,7 @@ ipcRenderer.on('action-update-tnc-state', (event, arg) => {
// update mygrid information with data from tnc
if (typeof(arg.mygrid) !== 'undefined') {
document.getElementById("myGrid").value = arq.mygrid;
document.getElementById("myGrid").value = arg.mygrid;
}