Leafcutter / Link build updates
This commit is contained in:
parent
de5106e9e8
commit
6e6cc22d2b
18 changed files with 491 additions and 29 deletions
|
|
@ -6,14 +6,14 @@ import {
|
|||
Box,
|
||||
// Typography,
|
||||
// TextField,
|
||||
Stack,
|
||||
// Stack,
|
||||
Select,
|
||||
MenuItem,
|
||||
} from "@mui/material";
|
||||
import { MuiChipsInput } from "mui-chips-input";
|
||||
import useSWR, { useSWRConfig } from "swr";
|
||||
import { getTicketQuery } from "app/_graphql/getTicketQuery";
|
||||
import { updateTicketMutation } from "app/_graphql/updateTicketMutation";
|
||||
import { getTicketQuery } from "../../../../../_graphql/getTicketQuery";
|
||||
import { updateTicketMutation } from "../../../../../_graphql/updateTicketMutation";
|
||||
import "@chatscope/chat-ui-kit-styles/dist/default/styles.min.css";
|
||||
|
||||
interface TicketEditProps {
|
||||
|
|
@ -43,7 +43,7 @@ export const TicketEdit: FC<TicketEditProps> = ({ id }) => {
|
|||
document: getTicketQuery,
|
||||
variables: { ticketId: `gid://zammad/Ticket/${id}` },
|
||||
},
|
||||
{ refreshInterval: 100000 }
|
||||
{ refreshInterval: 100000 },
|
||||
);
|
||||
useEffect(() => {
|
||||
const ticket = ticketData?.ticket;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue