fix: formatted_type in inventory adjustment.

This commit is contained in:
elforjani13
2021-12-29 12:34:12 +02:00
parent b4e9ee7ff3
commit 1492c24cfb
3 changed files with 5 additions and 5 deletions

View File

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