diff --git a/resources/js/src/components/MultiProductCountInput.js b/resources/js/src/components/MultiProductCountInput.js
index 43a623e9b8807314b4bb7aacb0417fd2c068e627..4f949991f8db5f4c1f47c35a6cc8431ced2481f9 100644
--- a/resources/js/src/components/MultiProductCountInput.js
+++ b/resources/js/src/components/MultiProductCountInput.js
@@ -201,7 +201,7 @@ const MultiProductCountInput = ({ total, children, countZero, onlysalable, price
                         <Button color="primary" startIcon={<ClearIcon />} onClick={() => doRefresh(prev => prev + 1)}>{translate('actions.clear')}</Button>
                     </Grid>
                 </Grid>
-                <Grid container item xs={12} spacing={2} style={{ height: 'calc(100vh - 420px)', overflowY: 'scroll', width: 'auto', margin: '0' }}>
+                <Grid container item xs={12} spacing={2} style={{ height: 'calc(100vh - 420px)', minHeight: '400px', overflowY: 'scroll', width: 'auto', margin: '0' }}>
                     {products_data.map((val, key) => {
                         if (!onlysalable || onlysalable && val.salable)
                             return React.cloneElement(React.Children.only(children), { key: key, product: val, refresh: refresh, filterCategory: filterCategory, filterName: filterName, updatePrice: updatePrice, countZero: countZero });