Skip to content

Commit

Permalink
Merge branch 'fix_random_number_in_loading' of github.com:abbyhu2000/…
Browse files Browse the repository at this point in the history
…OpenSearch-Dashboards into fix_random_number_in_loading
  • Loading branch information
abbyhu2000 committed Oct 18, 2024
2 parents 1b37ef5 + ebaf5fa commit ee11f04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/8650.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fix:
- Fix random big number when loading in query result ([#8650](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/8650))
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export interface QueryStatus {
}

// This is the time in milliseconds that the query will wait before showing the loading spinner
const BUFFER_TIME = 1000;
const BUFFER_TIME = 3000;

export function QueryResult(props: { queryStatus: QueryStatus }) {
const [isPopoverOpen, setPopover] = useState(false);
Expand Down

0 comments on commit ee11f04

Please sign in to comment.