1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-19 08:52:25 +01:00

(feat) hidden product count in category config page

This commit is contained in:
Du Peng 2022-10-20 18:24:22 +02:00
parent 5804b6230d
commit c43ce2b142

View File

@ -51,7 +51,7 @@ export const ProductCategoriesItem: React.FC<ProductCategoriesItemProps> = ({ pr
</button> </button>
</div>} </div>}
<p className='itemInfo-name'>{category.name}</p> <p className='itemInfo-name'>{category.name}</p>
<span className='itemInfo-count'>{category.products_count}</span> <span className='itemInfo-count' hidden>{category.products_count}</span>
</div> </div>
<div className='actions'> <div className='actions'>
{!isDragging && {!isDragging &&