Skip to content

Commit

Permalink
Merge branch 'next' of github.com:Peppermint-Lab/peppermint into next
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Nov 16, 2024
2 parents b78ef28 + 7f910d1 commit 1ab7324
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterEnum
ALTER TYPE "TicketStatus" ADD VALUE 'hold';
1 change: 1 addition & 0 deletions apps/api/src/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ enum Hook {
}

enum TicketStatus {
hold
needs_support
in_progress
in_review
Expand Down
1 change: 1 addition & 0 deletions apps/client/components/TicketDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ import { useUser } from "../../store/session";
import { ClientCombo, IconCombo, UserCombo } from "../Combo";

const ticketStatusMap = [
{ id: 0, value: "hold", name: "Hold", icon: CircleDotDashed },
{ id: 1, value: "needs_support", name: "Needs Support", icon: LifeBuoy },
{ id: 2, value: "in_progress", name: "In Progress", icon: CircleDotDashed },
{ id: 3, value: "in_review", name: "In Review", icon: Loader },
Expand Down

0 comments on commit 1ab7324

Please sign in to comment.