- fixed filter for calls table;

- implemented call table async on all pages;
- added applications table async;
This commit is contained in:
Vitalii Kiiko
2025-03-05 17:06:00 +01:00
parent ed91588ef5
commit 00b4ad8569
7 changed files with 316 additions and 63 deletions

View File

@@ -9,11 +9,11 @@ import DashboardService from '../../service/dashboard-service';
// components
import { Button } from 'primereact/button';
import AllDomandeTable from '../Domande/components/AllDomandeTable';
import DraftApplicationsTable from './components/DraftApplicationsTable';
import ChartDomandePerBando from '../../components/ChartDomandePerBando';
import ChartStatoDomande from '../../components/ChartStatoDomande';
import LatestBandiTableAsync from './components/LatestBandiTableAsync';
import AllDomandeTableAsync from '../Domande/components/AllDomandeTableAsync';
const Dashboard = () => {
const navigate = useNavigate();
@@ -137,14 +137,13 @@ const Dashboard = () => {
<div className="appPageSection">
<h2>{__('Ultimi bandi pubblicati', 'gepafin')}</h2>
<LatestBandiTableAsync/>
{/*<LatestBandiTable/>*/}
</div>
<div className="appPage__spacer"></div>
<div className="appPageSection">
<h2>{__('Ultime domande pubblicate', 'gepafin')}</h2>
<AllDomandeTable/>
<AllDomandeTableAsync/>
</div>
<div className="appPage__spacer"></div>