From 03852bf61757b11dc0017c7ef311280255a5d276 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Wed, 2 Jul 2025 14:08:47 +0200 Subject: [PATCH] - removed default filters; --- src/pages/Dashboard/components/LatestBandiTableAsync/index.js | 2 +- .../LatestBandiTableInstructorManagerAsync/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/Dashboard/components/LatestBandiTableAsync/index.js b/src/pages/Dashboard/components/LatestBandiTableAsync/index.js index 96e7875..59d2ce4 100644 --- a/src/pages/Dashboard/components/LatestBandiTableAsync/index.js +++ b/src/pages/Dashboard/components/LatestBandiTableAsync/index.js @@ -40,7 +40,7 @@ const LatestBandiTableAsync = () => { name: { value: null, matchMode: 'contains' }, startDate: { value: null, matchMode: 'dateIs' }, endDate: { value: null, matchMode: 'dateIs' }, - status: { value: 'PUBLISH', matchMode: 'equals' } + status: { value: null, matchMode: 'equals' } } }); const statuses = ['PUBLISH']; diff --git a/src/pages/DashboardInstructorManager/components/LatestBandiTableInstructorManagerAsync/index.js b/src/pages/DashboardInstructorManager/components/LatestBandiTableInstructorManagerAsync/index.js index 1bd8030..109ab2b 100644 --- a/src/pages/DashboardInstructorManager/components/LatestBandiTableInstructorManagerAsync/index.js +++ b/src/pages/DashboardInstructorManager/components/LatestBandiTableInstructorManagerAsync/index.js @@ -1,4 +1,4 @@ -import React, { useEffect, useState, useCallback, useMemo } from 'react'; +import React, { useEffect, useState, useCallback } from 'react'; import { __ } from '@wordpress/i18n'; import translationStrings from '../../../../translationStringsForComponents'; @@ -39,7 +39,7 @@ const LatestBandiTableInstructorManagerAsync = () => { name: { value: null, matchMode: 'contains' }, startDate: { value: null, matchMode: 'dateIs' }, endDate: { value: null, matchMode: 'dateIs' }, - status: { value: 'PUBLISH', matchMode: 'equals' } + status: { value: null, matchMode: 'equals' } } }); const statuses = ['PUBLISH'];