Skip to content

Commit

Permalink
New Settings option & New Workspace ... fix (#16596)
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddhant-K-code authored Mar 3, 2023
1 parent a4c2cf9 commit 2e519e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/dashboard/src/projects/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export default function ProjectsPage() {
? []
: [
{
title: "New Workspace ...",
title: "New Workspace with ...",
onClick: () =>
setStartWorkspaceModalProps({
contextUrl: branch.url,
Expand Down
7 changes: 6 additions & 1 deletion components/dashboard/src/projects/ProjectListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const ProjectListItem: FunctionComponent<ProjectListItemProps> = ({ proje
? []
: [
{
title: "New Workspace ...",
title: "New Workspace with ...",
onClick: () =>
setStartWorkspaceModalProps({
contextUrl: project.cloneUrl,
Expand All @@ -56,6 +56,11 @@ export const ProjectListItem: FunctionComponent<ProjectListItemProps> = ({ proje
separator: true,
},
]),
{
title: "Settings",
link: `/projects/${Project.slug(project)}/settings`,
separator: true,
},
{
title: "Remove Project",
customFontStyle:
Expand Down

0 comments on commit 2e519e7

Please sign in to comment.