Add initial part data to manufacturer part table (#7299)

This commit is contained in:
Oliver 2024-05-22 15:24:20 +10:00 committed by GitHub
parent cc423e9143
commit 190c100fcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,8 @@ export function ManufacturerPartTable({ params }: { params: any }): ReactNode {
fields: manufacturerPartFields,
table: table,
initialData: {
manufacturer: params?.manufacturer
manufacturer: params?.manufacturer,
part: params?.part
}
});