feat(warehouse) add warehouse propover.

This commit is contained in:
elforjani13
2022-01-30 18:04:56 +02:00
parent e4af460c0d
commit 2aa26959e9
6 changed files with 198 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import React, { useState, useEffect } from 'react';
import { FormGroup, NumericInput, Intent } from '@blueprintjs/core';
import classNames from 'classnames';
import { CLASSES } from 'common/classes';
import WarehouseListPopover from '../../containers/WarehouseListPopover';
/**
* Numeric input table cell.
@@ -36,7 +37,8 @@ export default function NumericInputCell({
onValueChange={handleValueChange}
onBlur={onBlur}
fill={true}
buttonPosition={"none"}
buttonPosition={'none'}
rightElement={<WarehouseListPopover />}
/>
</FormGroup>
);