Skip to content

Commit

Permalink
DEVPROD-10513 Make new project vars private by default (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
khelif96 authored Jan 18, 2025
1 parent c2656c6 commit 2f85e03
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ describe("Project Settings when not defaulting to repo", () => {
cy.dataCy("var-name-input").type("sample_name");
saveButtonEnabled(false);
cy.dataCy("var-value-input").type("sample_value");
cy.contains("label", "Private").click();
cy.dataCy("var-private-input").should("be.checked");
clickSave();
cy.validateToast("success", "Successfully updated project");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export const getFormSchema = (
isPrivate: {
type: "boolean" as "boolean",
title: "Private",
default: true,
},
isAdminOnly: {
type: "boolean" as "boolean",
Expand Down

0 comments on commit 2f85e03

Please sign in to comment.