refactor: archive issue (#2628)

* dev: archived issue store

* dev: archived issue layouts and store binding

* dev: archived issue detail store

* dev: is read only

* fix: archived issue delete

* fix: build error
This commit is contained in:
Dakshesh Jain 2023-11-03 20:20:05 +05:30 committed by GitHub
parent ff258c60fd
commit ad558833af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 1274 additions and 328 deletions

View file

@ -4,6 +4,7 @@ import { useRouter } from "next/router";
import { AppLayout } from "layouts/app-layout";
// contexts
import { IssueViewContextProvider } from "contexts/issue-view.context";
import { ArchivedIssueLayoutRoot } from "components/issues";
// ui
import { ArchiveIcon } from "@plane/ui";
import { ProjectArchivedIssuesHeader } from "components/headers";
@ -29,7 +30,7 @@ const ProjectArchivedIssuesPage: NextPageWithLayout = () => {
<X className="h-3 w-3" />
</button>
</div>
{/* <IssuesView /> */}
<ArchivedIssueLayoutRoot />
</div>
);
};