-
Notifications
You must be signed in to change notification settings - Fork 16
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
remembering search items per page #2175 #634
Conversation
… consistent when navigating away and back to search page
src/app/search/search-workflow-table/search-workflow-table.component.ts
Outdated
Show resolved
Hide resolved
src/app/search/search-tool-table/search-tool-table.component.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything else mentioned already
src/app/search/search-workflow-table/search-workflow-table.component.ts
Outdated
Show resolved
Hide resolved
…ults table should stay consistent when navigating away and back to search page" This reverts commit b588248. # Conflicts: # cypress/integration/group2/searchTable.ts
@@ -21,6 +21,11 @@ import { DockstoreService } from '../../shared/dockstore.service'; | |||
import { Workflow } from '../../shared/swagger'; | |||
import { SearchEntryTable } from '../search-entry-table'; | |||
import { SearchQuery } from '../state/search.query'; | |||
import {SearchService} from '../state/search.service'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally this would have the same format as the line above it.
@@ -6,6 +6,11 @@ import { DockstoreService } from '../../shared/dockstore.service'; | |||
import { DockstoreTool } from '../../shared/swagger'; | |||
import { SearchEntryTable } from '../search-entry-table'; | |||
import { SearchQuery } from '../state/search.query'; | |||
import {SearchService} from '../state/search.service'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formatting same as previous line, ideally
Pending passing build (not sure if real failure or not) |
Codecov Report
@@ Coverage Diff @@
## develop #634 +/- ##
===========================================
- Coverage 61.74% 61.74% -0.01%
===========================================
Files 238 238
Lines 7228 7241 +13
Branches 707 708 +1
===========================================
+ Hits 4463 4471 +8
- Misses 2592 2595 +3
- Partials 173 175 +2
Continue to review full report at Codecov.
|
@denis-yuen it looks like a flaky cypress test. Group 3 organizations.ts, the test is passing locally but failing on travis for some reason. Re-trying now. |
dockstore/dockstore#2175
Selected number of items per page in search results table should stay consistent when navigating away and back to search page. For example selecting 20 items per page then click navigating to an entry and then navigating back to the search page should continue to show 20 items per page rather than defaulting back to 10.