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 (
|
return (
|
||||||
<Stack>
|
<Stack>
|
||||||
{mdl_prop.hash ? (
|
{mdl_prop.hash ? (
|
||||||
<Alert variant="outline" color="red" title={t`Custom bascode`}>
|
<Alert variant="outline" color="red" title={t`Custom barcode`}>
|
||||||
<Trans>
|
<Trans>
|
||||||
A custom barcode is registered for this item. The shown code is not
|
A custom barcode is registered for this item. The shown code is not
|
||||||
that custom barcode.
|
that custom barcode.
|
||||||
|
@ -32,7 +32,7 @@ export function TableHoverCard({
|
|||||||
return (
|
return (
|
||||||
<Stack gap="xs">
|
<Stack gap="xs">
|
||||||
{extra.map((item, idx) => (
|
{extra.map((item, idx) => (
|
||||||
<div key={t`item-${idx}`}>{item}</div>
|
<div key={`item-${idx}`}>{item}</div>
|
||||||
))}
|
))}
|
||||||
</Stack>
|
</Stack>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user