Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunnaye committed Nov 26, 2024
1 parent 6fad0ee commit e816f6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/group1/checkerWorkflowFromWorkflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ describe('Checker workflow test from my-workflows', () => {

goToTab('Versions');
cy.get('[data-cy=date-modified-header]').should('be.visible').click();
cy.wait(1000);
cy.wait(1000); //waits for the sorting to finish to ensure Actions button is clicked for the right version (was encountering flakiness)

cy.contains('button', 'Actions').click();
cy.get('[data-cy=set-default-version-button]').should('be.visible').click();
Expand Down
3 changes: 2 additions & 1 deletion src/app/workflow/versions/versions-datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export class VersionsDataSource implements DataSource<WorkflowVersion> {

/**
* Updates the datasource from the endpoint
* @param {string} filter A string to filter path by ("cgpmap")
* @param {boolean} publicPage Boolean for if we are loading versions for the public page
* @param {workflowId} workflowId Id of parent workflow
* @param {string} sortDirection "asc" or "desc"
* @param {number} pageIndex The entry number to start listing from (page size * page number)
* @param {number} pageSize The page size (number of tools to return)
Expand Down

0 comments on commit e816f6b

Please sign in to comment.