mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-12 10:05:39 +00:00
fix translatable string (#7999)
* fix translatable string * do not translate key
This commit is contained in:
@ -97,7 +97,7 @@ export const InvenTreeQRCode = ({
|
||||
return (
|
||||
<Stack>
|
||||
{mdl_prop.hash ? (
|
||||
<Alert variant="outline" color="red" title={t`Custom bascode`}>
|
||||
<Alert variant="outline" color="red" title={t`Custom barcode`}>
|
||||
<Trans>
|
||||
A custom barcode is registered for this item. The shown code is not
|
||||
that custom barcode.
|
||||
|
@ -32,7 +32,7 @@ export function TableHoverCard({
|
||||
return (
|
||||
<Stack gap="xs">
|
||||
{extra.map((item, idx) => (
|
||||
<div key={t`item-${idx}`}>{item}</div>
|
||||
<div key={`item-${idx}`}>{item}</div>
|
||||
))}
|
||||
</Stack>
|
||||
);
|
||||
|
Reference in New Issue
Block a user