fix: changed text in viewer.js && contributing in readme.md updated

This commit is contained in:
te5154c
2024-02-11 00:55:09 +03:00
parent 98b3427818
commit e492c5f6ec
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ function showFlight(flight) {
// Changing text in each class
// FP before _ - means flightplan
$(".fp_is_filed").text(flight["not_filed"] ? "This flightplan was not filed" : "");
$(".fp_is_filed").text(flight["not_filed"] ? "This flightplan wasn't used" : "");
$(".fp_callsign").text(flight["callsign"]);
$(".fp_depa_city").text(airports[flight["dep"]]["city"]);
$(".fp_arra_city").text(airports[flight["arr"]]["city"]);