Skip to content

Commit 8f8dc22

Browse files
fix ambiguity & settings option
Signed-off-by: Siddhant Khare <[email protected]>
1 parent df3e15a commit 8f8dc22

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

components/dashboard/src/projects/Project.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ export default function ProjectsPage() {
382382
? []
383383
: [
384384
{
385-
title: "New Workspace ...",
385+
title: "New Workspace with &rarr;",
386386
onClick: () =>
387387
setStartWorkspaceModalProps({
388388
contextUrl: branch.url,

components/dashboard/src/projects/ProjectListItem.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const ProjectListItem: FunctionComponent<ProjectListItemProps> = ({ proje
4747
? []
4848
: [
4949
{
50-
title: "New Workspace ...",
50+
title: "New Workspace with &rarr;",
5151
onClick: () =>
5252
setStartWorkspaceModalProps({
5353
contextUrl: project.cloneUrl,
@@ -62,6 +62,11 @@ export const ProjectListItem: FunctionComponent<ProjectListItemProps> = ({ proje
6262
"text-red-600 dark:text-red-400 hover:text-red-800 dark:hover:text-red-300",
6363
onClick: () => setShowRemoveModal(true),
6464
},
65+
{
66+
title: "Settings",
67+
href: `/projects/${Project.slug(project)}/settings`,
68+
separator: true,
69+
},
6570
]}
6671
/>
6772
</div>

0 commit comments

Comments
 (0)