From a341cf0f29785a23d02aa4a1ec8e7b2e42dd472f Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Thu, 9 Oct 2025 20:32:49 +0200 Subject: [PATCH] Notes: Fix after changing Note state to lower value --- assets/js/sections/qso.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 79d1eda9a..a3603f7a9 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1027,13 +1027,16 @@ function get_note_status(callsign){ $('#callsign-note-id').val(data.id); setNotesVisibility(2, noteData.content); } else { + $('#callsign-note-id').val(''); setNotesVisibility(2, lang_general_word_error); } } ).fail(function() { + $('#callsign-note-id').val(''); setNotesVisibility(2, lang_general_word_error); }); } else { + $('#callsign-note-id').val(''); setNotesVisibility(1); } }