diff --git a/src/components/Dashboard/Sales/ListingVarients/ListingVarientInfo.jsx b/src/components/Dashboard/Sales/ListingVarients/ListingVarientInfo.jsx index f5517e46..c1f2c9e4 100644 --- a/src/components/Dashboard/Sales/ListingVarients/ListingVarientInfo.jsx +++ b/src/components/Dashboard/Sales/ListingVarients/ListingVarientInfo.jsx @@ -12,6 +12,7 @@ import ObjectProperty from '../../common/ObjectProperty.jsx' import ViewButton from '../../common/ViewButton' import InfoCircleIcon from '../../../Icons/InfoCircleIcon.jsx' import PictureIcon from '../../../Icons/PictureIcon.jsx' +import BulletListIcon from '../../../Icons/BulletListIcon.jsx' import NoteIcon from '../../../Icons/NoteIcon.jsx' import AuditLogIcon from '../../../Icons/AuditLogIcon.jsx' import ObjectForm from '../../common/ObjectForm' @@ -55,6 +56,7 @@ const ListingVarientInfo = () => { { info: true, listingImages: true, + aspects: true, notes: true, auditLogs: false } @@ -118,6 +120,7 @@ const ListingVarientInfo = () => { items={[ { key: 'info', label: 'Listing Varient Information' }, { key: 'listingImages', label: 'Listing Images' }, + { key: 'aspects', label: 'Aspects' }, { key: 'notes', label: 'Notes' }, { key: 'auditLogs', label: 'Audit Logs' } ]} @@ -196,7 +199,10 @@ const ListingVarientInfo = () => { isEditing={isEditing} type='listingVarient' objectData={objectData} - visibleProperties={{ listingImages: false }} + visibleProperties={{ + listingImages: false, + aspects: false + }} /> { showCard={false} /> + } + active={collapseState.aspects} + onToggle={(expanded) => + updateCollapseState('aspects', expanded) + } + collapseKey='aspects' + > + + )}