2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-26 16:50:56 +00:00

Table col fix (#9762)

* Update mantine-datatable

* Improve table hook

* Fix for table name

- Table names must be unique
- Otherwise stored column data gets corrupted

* Click through on table

* Tweak unit tests
This commit is contained in:
Oliver
2025-06-12 12:18:14 +10:00
committed by GitHub
parent a3c3c142f7
commit c81d0eb628
6 changed files with 24 additions and 13 deletions

View File

@ -15,7 +15,7 @@ test('Core User/Group/Contact', async ({ browser }) => {
// users
await loadTab(page, 'Users');
await page.getByRole('cell', { name: 'admin' }).click();
await page.getByRole('cell', { name: 'admin', exact: true }).click();
await page.getByText('User: admin', { exact: true }).waitFor();
await page.getByLabel('User Details').waitFor();
await page.getByLabel('breadcrumb-1-users').click();