Skip to content

Commit

Permalink
Flights lookup fix bug with selecting dest
Browse files Browse the repository at this point in the history
  • Loading branch information
a7md0 committed Jun 4, 2021
1 parent d210266 commit b8a6ae3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ protected void Page_Load(object sender, EventArgs e) {
this.DepartureDateTextBox.Text = DateTime.Now.ToString("yyyy-MM-dd"); // Dep date default to today date
this.ReturnDateTextBox.Text = DateTime.Now.AddDays(14).ToString("yyyy-MM-dd"); // Return date to today + 2 weeks
}

this.OnOriginChanged(); // Call the origin changed to update the available destination list
}

this.OnOriginChanged(); // Call the origin changed to update the available destination list
this.ControlsVisibility();
}

Expand Down

0 comments on commit b8a6ae3

Please sign in to comment.