fix: project draft issue header (#3773)

This commit is contained in:
Anmol Singh Bhatia 2024-02-23 19:09:28 +05:30 committed by GitHub
parent 8c1f169f61
commit 46e1d46005
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ const ProjectArchivedIssuesPage: NextPageWithLayout = observer(() => {
<>
<PageHead title={pageTitle} />
<div className="flex h-full w-full flex-col">
<div className="ga-1 flex items-center border-b border-custom-border-200 px-4 py-2.5 shadow-sm">
<div className="gap-1 flex items-center border-b border-custom-border-200 px-4 py-2.5 shadow-sm">
<button
type="button"
onClick={() => router.push(`/${workspaceSlug}/projects/${projectId}/issues/`)}

View File

@ -26,7 +26,7 @@ const ProjectDraftIssuesPage: NextPageWithLayout = observer(() => {
<>
<PageHead title={pageTitle} />
<div className="flex h-full w-full flex-col">
<div className="ga-1 flex items-center border-b border-custom-border-200 px-4 py-2.5 shadow-sm">
<div className="gap-1 flex items-center border-b border-custom-border-200 px-4 py-2.5 shadow-sm">
<button
type="button"
onClick={() => router.push(`/${workspaceSlug}/projects/${projectId}/issues/`)}
@ -34,8 +34,8 @@ const ProjectDraftIssuesPage: NextPageWithLayout = observer(() => {
>
<PenSquare className="h-4 w-4" />
<span>Draft Issues</span>
<X className="h-3 w-3" />
</button>
<X className="h-3 w-3" />
</div>
<DraftIssueLayoutRoot />
</div>