Skip to content

Commit

Permalink
DEVPROD-10151: Rename owner field in project settings (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophstad authored Nov 5, 2024
1 parent 5916d0a commit 2583492
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const modalFormDefinition = (githubOrgs: string[]) => ({
projectName: projectName.schema,
owner: {
type: "string" as "string",
title: "Owner",
title: "GitHub Organization",
oneOf: githubOrgs.map((org) => ({
type: "string" as "string",
title: org,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const getFormSchema = (
properties: {
owner: {
type: "string" as "string",
title: "Owner",
title: "GitHub Organization",
format: "noSpaces",
// @ts-expect-error: FIXME. This comment was added by an automated script.
minLength: getMinLength(projectType, repoData, "owner"),
Expand Down

0 comments on commit 2583492

Please sign in to comment.