expand sub tasks
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -44,7 +44,7 @@ interface ReportingOverviewProjectsTableProps {
|
||||
|
||||
const ReportingOverviewProjectsTable = ({
|
||||
searchQuery,
|
||||
teamsId,
|
||||
teamsId,
|
||||
}: ReportingOverviewProjectsTableProps) => {
|
||||
const dispatch = useAppDispatch();
|
||||
const { t } = useTranslation('reporting-projects');
|
||||
|
||||
@@ -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>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user