Skip to content

Commit

Permalink
summary value
Browse files Browse the repository at this point in the history
  • Loading branch information
angorayc committed Dec 11, 2020
1 parent 26191ac commit 64a9371
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ const getSummary = ({
}
const linkValueField =
item.linkField != null && data.find((d) => d.field === item.linkField);
const linkValue = getOr(null, 'originalValue', linkValueField);
const value = getOr(null, 'originalValue', field);
const linkValue = getOr(null, 'originalValue.0', linkValueField);
const value = getOr(null, 'originalValue.0', field);
const category = field.category;
const fieldType = get(`${category}.fields.${field.field}.type`, browserFields) as string;
const description = {
Expand Down

0 comments on commit 64a9371

Please sign in to comment.