expand sub tasks

This commit is contained in:
chamiakJ
2025-07-03 01:31:05 +05:30
parent 3bef18901a
commit ecd4d29a38
435 changed files with 13150 additions and 11087 deletions

View File

@@ -13,7 +13,6 @@ const OverviewReportsProjectsTab = ({ teamsId = null }: OverviewReportsProjectsT
const { t } = useTranslation('reporting-projects-drawer');
const [searchQuery, setSearchQuery] = useState('');
return (
<Flex vertical gap={24}>
<CustomSearchbar

View File

@@ -44,7 +44,7 @@ interface ReportingOverviewProjectsTableProps {
const ReportingOverviewProjectsTable = ({
searchQuery,
teamsId,
teamsId,
}: ReportingOverviewProjectsTableProps) => {
const dispatch = useAppDispatch();
const { t } = useTranslation('reporting-projects');

View File

@@ -132,7 +132,11 @@ const TimeWiseFilter = () => {
{t(item.label)}
</Typography.Text>
<Typography.Text type="secondary" style={{ fontSize: 12 }}>
{item.dates ? dayjs(item.dates.split(' - ')[0]).format('MMM DD, YYYY') + ' - ' + dayjs(item.dates.split(' - ')[1]).format('MMM DD, YYYY') : ''}
{item.dates
? dayjs(item.dates.split(' - ')[0]).format('MMM DD, YYYY') +
' - ' +
dayjs(item.dates.split(' - ')[1]).format('MMM DD, YYYY')
: ''}
</Typography.Text>
</List.Item>
))}