Remove fields for editing Storage location

master
Tanner Collin 11 months ago
parent 004a6e4b9f
commit b2348f2129
  1. 16
      webclient/src/Storage.js

@ -18,12 +18,6 @@ export function StorageEditor(props) {
error: error[name],
});
const locationOptions = [
{ key: '0', text: 'Member Shelves', value: 'member_shelves' },
{ key: '1', text: 'Lockers', value: 'lockers' },
{ key: '2', text: 'Large Project Storage', value: 'large_project_storage' },
];
return (
<div className='transaction-editor'>
<Form.Field error={error.member_id}>
@ -37,14 +31,6 @@ export function StorageEditor(props) {
/>
</Form.Field>
<Form.Select
label='Location'
fluid
options={locationOptions}
{...makeProps('location')}
onChange={handleValues}
/>
<Form.Input
label='Memo'
fluid
@ -156,7 +142,7 @@ function StorageTable(props) {
</Table.Row>
<Table.Row>
<Table.Cell>Memo:</Table.Cell>
<Table.Cell>{storage.memo}</Table.Cell>
<Table.Cell>{storage.memo || 'None'}</Table.Cell>
</Table.Row>
</Table.Body>
</BasicTable>

Loading…
Cancel
Save