diff --git a/src/components/modals/main/marketplace/Item.jsx b/src/components/modals/main/marketplace/Item.jsx index 860194d0..0f5fe1c3 100644 --- a/src/components/modals/main/marketplace/Item.jsx +++ b/src/components/modals/main/marketplace/Item.jsx @@ -13,6 +13,7 @@ import { MdTranslate, MdOutlineKeyboardArrowRight, MdExpandMore, + MdStyle, } from 'react-icons/md'; import Modal from 'react-modal'; @@ -77,6 +78,15 @@ export default class Item extends PureComponent { ); } + let type; + if (this.props.data.data.type === 'settings') { + type = 'Settings Pack'; + } else if (this.props.data.data.type === 'quotes') { + type = 'Quote Pack'; + } else if (this.props.data.data.type === 'photos') { + type = 'Photos Pack'; + } + return (
) : null} - {/*
- +
+
- {variables.getMessage('modals.main.marketplace.product.shares')} - 324 + {variables.getMessage('modals.main.settings.sections.background.type.title')} + + {' '} + {variables.getMessage( + 'modals.main.addons.create.types.' + this.props.data.data.type, + ) || 'marketplace'} +
-
*/} +