2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-09-14 06:31:27 +00:00

Fix for table filtering logic (#9949)

* Fix for table filtering logic

- Disable table filters if custom filters supplied
- Handle search term better

* Logic Fix

* Tweak unit test
This commit is contained in:
Oliver
2025-07-04 10:24:02 +10:00
committed by GitHub
parent 4307e6d170
commit a954555eb7
3 changed files with 11 additions and 15 deletions

View File

@@ -28,6 +28,8 @@ test('Plugins - Settings', async ({ browser, request }) => {
await navigate(page, 'settings/admin/plugin/');
await clearTableFilters(page);
await page.getByLabel('table-search-input').fill('integration');
await page.waitForTimeout(250);
await page.waitForLoadState('networkidle');
await page
.getByRole('row', { name: 'SampleIntegrationPlugin' })