Create a workflow statistics page from Jira
This commit is contained in:
		
							parent
							
								
									d8b91e26cc
								
							
						
					
					
						commit
						15701e60c2
					
				| 
						 | 
				
			
			@ -27,7 +27,6 @@ type TIssue = {
 | 
			
		|||
}
 | 
			
		||||
const Jira = () => {
 | 
			
		||||
  const [loader, setLoader] = useState(true)
 | 
			
		||||
  const [data, setData] = useState([])
 | 
			
		||||
  const [issuesInProject, setIssuesInProject] = useState<TIssue[]>([])
 | 
			
		||||
  const [listProject, setListProject] = useState<TProject[]>([])
 | 
			
		||||
  const [listStatus, setListStatus] = useState<string[]>([])
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,10 +1,10 @@
 | 
			
		|||
import { Avatar, Box, Button, Loader, Text } from '@mantine/core'
 | 
			
		||||
import React, { useEffect, useState } from 'react'
 | 
			
		||||
import classes from './Worklogs.module.css'
 | 
			
		||||
import { get } from '@/rtk/helpers/apiService'
 | 
			
		||||
import { getAllUserWorklogs } from '@/api/Admin'
 | 
			
		||||
import { get } from '@/rtk/helpers/apiService'
 | 
			
		||||
import { Avatar, Box, Button, Loader, Text } from '@mantine/core'
 | 
			
		||||
import { DateInput } from '@mantine/dates'
 | 
			
		||||
import moment from 'moment'
 | 
			
		||||
import { DateInput, DatePicker } from '@mantine/dates'
 | 
			
		||||
import { useEffect, useState } from 'react'
 | 
			
		||||
import classes from './Worklogs.module.css'
 | 
			
		||||
 | 
			
		||||
interface WorkLog {
 | 
			
		||||
  self: string
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue