Skip to content

Commit

Permalink
Merge branch 'main' into wateringress-optional-condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr authored Feb 15, 2024
2 parents 55fb56b + 624b4c0 commit 52ba392
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
volumes:
- ./data/minio:/data
entrypoint: sh
command: -c 'mkdir -p /data/cannonflea && /usr/bin/minio server /data -console-address ":9002"'
command: -c 'mkdir -p /data/cannonflea && minio server /data -console-address ":9002"'
ports:
- 9000:9000
db:
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/identifierFilter.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ describe("Tests for filtering data by identifier.", () => {
.find('[role="option"]')
.eq(1)
.click({ force: true });
cy.get("tbody").children().should("have.length", 3);
cy.get("tbody").children().should("have.length", 2);

cy.get('[data-cy="borehole-table"] thead .checkbox').click({ force: true });
cy.contains("button", "Bulk editing").click({ force: true });
Expand Down

0 comments on commit 52ba392

Please sign in to comment.