fix: customer & inventory adjustment.

This commit is contained in:
elforjani13
2021-12-28 17:57:50 +02:00
parent 1e472d278a
commit e615f62ef5
5 changed files with 6 additions and 6 deletions

View File

@@ -40,9 +40,9 @@ export const PublishAccessor = (r) => {
* Type column accessor.
*/
export const TypeAccessor = (row) => {
return row.type ? (
return row.type_formatted ? (
<Tag minimal={true} round={true} intent={Intent.NONE}>
{intl.get(row.type)}
{row.type_formatted}
</Tag>
) : (
''