Describe the bug
I'm using Editable field data and set type as currency and then in inline editing ok is show up!.
To Reproduce
Steps to reproduce the behavior:
currency.onRowUpdate callback.Expected behavior
Inline Textbox for currency format.
Screenshots

Desktop (please complete the following information):
As a workaround for now, you can overwrite the editComponent in the column definition:
{
title: "Value",
field: "value",
type: "currency",
editComponent: props => (
<input
type="numeric"
value={props.value}
onChange={e => props.onChange(e.target.value)}
/>
)
}
Its because there is no currency field definition at the moment: https://github.com/mbrn/material-table/blob/v1.50.0/src/components/m-table-edit-field.js#L126
As a workaround for now, you can overwrite the editComponent in the column definition:
{ title: "Value", field: "value", type: "currency", editComponent: props => ( <input type="numeric" value={props.value} onChange={e => props.onChange(e.target.value)} /> ) }
@bobctr Thanks for the workaround, do you have any idea how can I make it similar to the other fields?

Cannot be reproduced anymore. IF this is still relevant, feel free to reopen this issue.
Most helpful comment
As a workaround for now, you can overwrite the editComponent in the column definition: