Fixed remove from production button not closing drawer. BOD-315

This commit is contained in:
Patrick Fic
2020-09-09 12:16:03 -07:00
parent eff6f361ee
commit c4c646ba35
5 changed files with 20 additions and 6 deletions

View File

@@ -9,11 +9,12 @@ export default function BarcodePopupComponent({ value, children }) {
<Popover
content={
<Barcode
value={value}
background='transparent'
value={value || ""}
background="transparent"
displayValue={false}
/>
}>
}
>
{children ? children : <Tag>{t("general.labels.barcode")}</Tag>}
</Popover>
</div>