2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 19:45:46 +00:00

Remove translation macro (#6914)

- Incorrect in this location to translate inner text
This commit is contained in:
Oliver
2024-04-02 16:03:11 +11:00
committed by GitHub
parent 3518377e2c
commit abad2914c6

View File

@ -90,7 +90,7 @@ export default function PartCategoryTemplateTable({}: {}) {
let units = ''; let units = '';
if (record?.parameter_template_detail?.units) { if (record?.parameter_template_detail?.units) {
units = t`[${record.parameter_template_detail.units}]`; units = `[${record.parameter_template_detail.units}]`;
} }
return ( return (