From 1f67ffc8718928430ba00b7fcad2e41797146329 Mon Sep 17 00:00:00 2001 From: phl0 Date: Sun, 12 Jun 2022 13:50:54 +0200 Subject: [PATCH] Replace 0 by slashed zero --- application/views/interface_assets/footer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 93e88927..f501ea59 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -590,7 +590,7 @@ function showActivatorsMap(call, count, grids) { let re = /,/g; grids = grids.replace(re, ', '); - var result = "Callsign: "+call+"
"; + var result = "Callsign: "+call.replace('0', 'Ø')+"
"; result += "Count: "+count+"
"; result += "Grids: "+grids+"

";