Skip to content

Commit

Permalink
feat(log payment): make payment method free text
Browse files Browse the repository at this point in the history
ref #342
  • Loading branch information
Mloweedgar committed Feb 8, 2022
1 parent d18eb97 commit 0a995af
Showing 1 changed file with 3 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,13 @@ function LogPaymentForm(props) {
variant="outlined"
className={classes.itemLogPaymentFormSelectFormControl}
>
<InputLabel id="demo-simple-select-outlined-label">
Payment System
</InputLabel>
<Select
labelId="demo-simple-select-outlined-label"
<TextField
id="payment_system"
name="payment_system"
label="Payment System"
variant="outlined"
onChange={handleOnInputChange}
>
<MenuItem value="">
<em>None</em>
</MenuItem>
<MenuItem value="visa">Visa</MenuItem>
</Select>
/>
</FormControl>
</Grid>

Expand Down

0 comments on commit 0a995af

Please sign in to comment.