Skip to content

Commit 9a647c4

Browse files
committed
Fix cancel button in MAUI QueryDynamicEntities not restoring query panel visibility
1 parent 85217fa commit 9a647c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/MAUI/Maui.Samples/Samples/Search/QueryDynamicEntities/QueryDynamicEntities.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ private void OnFlightNumberCancel(object sender, EventArgs e)
216216
FlightNumberDialog.IsVisible = false;
217217
FlightNumberInput.Text = string.Empty;
218218
QueryDropdown.SelectedIndex = -1;
219-
QueryDropdown.IsVisible = true;
219+
QueryControlPanel.IsVisible = true;
220220
}
221221

222222
// Toggles visibility of flight detail information in the results list.

0 commit comments

Comments
 (0)