Skip to content

Commit 105c528

Browse files
committed
rwy surface
1 parent 19c951c commit 105c528

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: api/GetAPdata.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static async Task<IActionResult> GetAPdata([HttpTrigger("get", Route = "a
6262
using(var conn = new SqlConnection(AZURE_CONN_STRING))
6363
{
6464
var result = await conn.QuerySingleOrDefaultAsync<string>(
65-
"web.GetairportData4",
65+
"web.GetairportData2",
6666
new {
6767
@countn = count,
6868
@ident =ident,

Diff for: index.html

+2
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@
228228
<th scope="col">city</th>
229229
<th scope="col">country</th>
230230
<th scope="col">rwy lnth</th>
231+
<th scope="col">srfc</th>
231232
<th scope="col">elev</th>
232233
</tr>
233234
</thead>
@@ -240,6 +241,7 @@
240241
<td>{{ apt.city }}</td>
241242
<td>{{ apt.country }}</td>
242243
<td>{{ apt.rwy }}</td>
244+
<td>{{ apt.srfc }}</td>
243245
<td>{{ apt.elevation }}</td>
244246
</tr>
245247
</tbody>

0 commit comments

Comments
 (0)