From 43f96fab9dea82b3ed64b60816f34e7eee8f5062 Mon Sep 17 00:00:00 2001 From: Thomas Werzmirzowsky Date: Wed, 29 Sep 2021 21:51:42 +0200 Subject: [PATCH] "Mark QSL Card Not Required" sets status to Ignore but sets red arrow which reflects status No. Changed color to grey. --- 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 431c3dea..c92eba98 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -1239,7 +1239,7 @@ $(document).ready(function(){ }, success: function(data) { if (data.message == 'OK') { - $("#qso_" + id).find("td:eq(8)").find("span:eq(0)").attr('class', 'qsl-red'); // Paints arrow green + $("#qso_" + id).find("td:eq(8)").find("span:eq(0)").attr('class', 'qsl-grey'); // Paints arrow grey } else { $(".bootstrap-dialog-message").append('
×You are not allowed to update QSL status!
');