diff --git a/application/views/qso/index.php b/application/views/qso/index.php
index f9f4acbb..367036be 100755
--- a/application/views/qso/index.php
+++ b/application/views/qso/index.php
@@ -2,6 +2,8 @@
+
diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js
index c64934f5..e8a12008 100644
--- a/assets/js/sections/qso.js
+++ b/assets/js/sections/qso.js
@@ -528,6 +528,7 @@ function reset_fields() {
mymap.removeLayer(markers);
$('.callsign-suggest').hide();
$('.dxccsummary').remove();
+ $('#timesWorked').html(lang_qso_title_previous_contacts);
}
function resetTimers(manual) {
@@ -758,7 +759,11 @@ $("#callsign").focusout(function() {
county_selectize.setValue(result.callsign_us_county, false);
}
- $('#timesWorked').html(result.timesWorked + ' ');
+ if(result.timesWorked != "") {
+ $('#timesWorked').html(result.timesWorked + lang_qso_title_times_worked_before);
+ } else {
+ $('#timesWorked').html(lang_qso_title_previous_contacts);
+ }
if($('#iota_ref').val() == "") {
$('#iota_ref').val(result.callsign_iota);
}
@@ -1049,6 +1054,7 @@ function resetDefaultQSOFields() {
$('#callsign-image').attr('style', 'display: none;');
$('#callsign-image-content').text("");
$('.dxccsummary').remove();
+ $('#timesWorked').html(lang_qso_title_previous_contacts);
}
function closeModal() {