Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cypress-tests/cypress/e2e/v2/groupBasics.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe("Group - create, edit and delete", () => {
// Change settings
const modifiedGroupName = `${groupName} - modified`;
const modifiedGroupDescription = `${groupDescription} - modified`;
cy.getDataCy("nav-link-settings").click();
cy.getDataCy("group-settings-link").click();
cy.getDataCy("group-name-input").should("have.value", groupName);
cy.getDataCy("group-name-input").clear().type(modifiedGroupName);
cy.getDataCy("group-description-input").should(
Expand All @@ -88,7 +88,7 @@ describe("Group - create, edit and delete", () => {
);

// Delete group
cy.getDataCy("nav-link-settings").click();
cy.getDataCy("group-settings-link").click();
cy.getDataCy("group-delete-button").click();
cy.getDataCy("group-delete-confirm-button").should("not.be.enabled");
cy.getDataCy("delete-confirmation-input").type(groupSlug);
Expand Down
4 changes: 2 additions & 2 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ ui:
replicaCount: 1
image:
repository: renku/renku-ui
tag: "4.3.0"
tag: "4.4.0"
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
Expand Down Expand Up @@ -717,7 +717,7 @@ ui:
keepCookies: []
image:
repository: renku/renku-ui-server
tag: "4.3.0"
tag: "4.4.0"
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
Expand Down
Loading