announcement

This commit is contained in:
hamid zarghami
2025-10-25 11:26:12 +03:30
parent 3615c72a93
commit 9a90f96170
15 changed files with 476 additions and 8 deletions
+2 -1
View File
@@ -8,6 +8,7 @@ import { staticTicketsData } from './data/staticData'
import { t } from '@/locale'
import moment from 'moment-jalaali'
import type { ColumnType } from '@/components/types/TableTypes'
import { Paths } from '@/config/Paths'
// تعریف type برای تیکت
interface TicketItem {
@@ -89,7 +90,7 @@ const TicketList: FC = () => {
title: t('ticket.detail'),
key: 'actions',
render: (item) => (
<Link to={`/tickets/${item.id}`}>
<Link to={Paths.tickets.detail + item.id}>
<Eye size={20} color='#8C90A3' />
</Link>
)