Skip to content

feat(RunningQueries): add userSID search #1462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 16, 2024
Merged

feat(RunningQueries): add userSID search #1462

merged 3 commits into from
Oct 16, 2024

Conversation

sareyu
Copy link
Collaborator

@sareyu sareyu commented Oct 14, 2024

Added mixed search by query text and userSID
Demo

CI Results

Test Status: βœ… PASSED

πŸ“Š Full Report

Total Passed Failed Flaky Skipped
134 134 0 0 0

Bundle Size: βœ…

Current: 78.95 MB | Main: 78.96 MB
Diff: 0.00 MB (-0.00%)

βœ… Bundle size unchanged.

ℹ️ CI Information
  • Test recordings for failed tests are available in the full report.
  • Bundle size is measured for the entire 'dist' directory.
  • πŸ“Š indicates links to detailed reports.
  • πŸ”Ί indicates increase, πŸ”½ decrease, and βœ… no change in bundle size.

@sareyu sareyu linked an issue Oct 14, 2024 that may be closed by this pull request
@sareyu sareyu marked this pull request as ready for review October 14, 2024 12:23
return (
<React.Fragment>
{error ? <ResponseError error={parseQueryErrorToString(error)} /> : null}
<TableWithControlsLayout.Table loading={isFetching && data === undefined}>
<TableWithControlsLayout.Table loading={isFetching && !data.length}>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should change it to something like in TopQueriesData:

loading={isFetching && currentData === undefined}

Or not initialize data with an empty array and use data === undefined

Currently, loader is shown on autorefresh when there is no data, because it is isFetching=true and data.length=0

artemmufazalov
artemmufazalov previously approved these changes Oct 16, 2024
@sareyu sareyu added this pull request to the merge queue Oct 16, 2024
Merged via the queue into main with commit 1194b34 Oct 16, 2024
6 checks passed
@sareyu sareyu deleted the issue1325 branch October 16, 2024 11:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Running Queries Tab: Limit number of rows and add user sid filter
3 participants