Skip to content

Commit

Permalink
chore: use airport available in sample dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
SkySails committed May 13, 2024
1 parent 03d7db5 commit 759fd04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/gauge/Components/InterfaceSample.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,15 @@ export class InterfaceSample extends DisplayComponent<InterfaceSampleProps> {
<h4 style="text-align: center;">Step 3 - Query the database</h4>
<div class="horizontal">
<div class="vertical">
<Input ref={this.icaoInputRef} value="ESSA" class="text-field" />
<Input ref={this.icaoInputRef} value="TNCM" class="text-field" />
<div ref={this.executeIcaoButtonRef} class="button">
Fetch Airport
</div>
<div style="height:30px;"></div>
<Input
ref={this.sqlInputRef}
textarea
value="SELECT airport_name FROM tbl_airports WHERE airport_identifier = 'ESSA'"
value="SELECT airport_name FROM tbl_airports WHERE airport_identifier = 'TNCM'"
class="text-field"
/>
<div ref={this.executeSqlButtonRef} class="button">
Expand Down

0 comments on commit 759fd04

Please sign in to comment.