mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
fix translatable string (#7999)
* fix translatable string * do not translate key
This commit is contained in:
parent
7b750dd04f
commit
bcbbae0a18
@ -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>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user