diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e9d2179..821906b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: Bug report about: Report a reproducible bug in OpenFrame -title: "bug: " +title: 'bug: ' labels: [bug] assignees: [] --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 28d34ac..94da4e3 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,7 +1,7 @@ --- name: Feature request about: Suggest an improvement for OpenFrame -title: "feat: " +title: 'feat: ' labels: [enhancement] assignees: [] --- diff --git a/app/(dashboard)/projects/[projectId]/page.tsx b/app/(dashboard)/projects/[projectId]/page.tsx index 1d46d4e..d2b5d7e 100644 --- a/app/(dashboard)/projects/[projectId]/page.tsx +++ b/app/(dashboard)/projects/[projectId]/page.tsx @@ -106,10 +106,7 @@ export default async function ProjectPage({ params, searchParams }: ProjectPageP where: { projectId: project.id }, skip, take: pageSize, - orderBy: [ - { updatedAt: sortOrder }, - { id: sortOrder }, - ], + orderBy: [{ updatedAt: sortOrder }, { id: sortOrder }], include: { versions: { where: { isActive: true },