mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-01 11:10:54 +00:00
various small fixes (#9797)
This commit is contained in:
@ -9,7 +9,6 @@ import structlog
|
||||
|
||||
import common.models
|
||||
import InvenTree.helpers
|
||||
import InvenTree.helpers_model
|
||||
import plugin.models
|
||||
from common.settings import get_global_setting
|
||||
from InvenTree import version
|
||||
|
@ -225,9 +225,9 @@ export function UserDrawer({
|
||||
*/
|
||||
export function UserTable({
|
||||
directLink
|
||||
}: {
|
||||
}: Readonly<{
|
||||
directLink?: boolean;
|
||||
}) {
|
||||
}>) {
|
||||
const table = useTable('users');
|
||||
const navigate = useNavigate();
|
||||
const user = useUserState();
|
||||
|
@ -42,7 +42,9 @@ test('Tables - Filters', async ({ browser }) => {
|
||||
test('Tables - Columns', async ({ browser }) => {
|
||||
// Go to the "stock list" page
|
||||
const page = await doCachedLogin(browser, {
|
||||
url: 'stock/location/index/stock-items'
|
||||
url: 'stock/location/index/stock-items',
|
||||
username: 'steven',
|
||||
password: 'wizardstaff'
|
||||
});
|
||||
|
||||
// Open column selector
|
||||
|
Reference in New Issue
Block a user