From 4fbb336fa31077c971211949df1398b090fb3e2e Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 15 Aug 2018 15:41:47 -0500 Subject: [PATCH] Show n/a for aircraft type on info pane --- public_html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/script.js b/public_html/script.js index 4d15c38..28c041a 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -916,7 +916,7 @@ function refreshSelected() { if (selected.icaotype !== null) { $('#selected_icaotype').text(selected.icaotype); } else { - $('#selected_icaotype').text(""); + $('#selected_icaotype').text("n/a"); } // Not using this logic for the redesigned info panel at the time, but leaving it in if/when adding it back