Added corporate display to Tickets table

This commit is contained in:
Joao Ramos
2024-02-26 23:27:10 +00:00
parent b663e5c706
commit 24c3f506c6
4 changed files with 49 additions and 11 deletions

View File

@@ -32,3 +32,7 @@ export const TicketStatusLabel: { [key in TicketStatus]: string } = {
"in-progress": "In Progress",
completed: "Completed",
};
export interface TicketWithCorporate extends Ticket {
corporate?: string;
}