Don't store the operator callsign in local storage for the operator modal. too much risk to accidentially hit okay and work with the wrong operator

This commit is contained in:
HB9HIL
2026-02-01 01:29:29 +01:00
parent 724defa2cc
commit 6eacc561f9

View File

@@ -4,12 +4,6 @@ $(document).ready(function () {
saveOperator();
}
});
setTimeout(function () {
if (localStorage.getItem('operator_callsign')) {
$('#operator_callsign').val(localStorage.getItem('operator_callsign'));
}
}, 200);
});
function displayOperatorDialog() {
@@ -56,6 +50,4 @@ function saveOperator() {
} else {
operatorInput.addClass("is-invalid");
}
localStorage.setItem('operator_callsign', operatorCallsign);
}