Skip to content

Commit

Permalink
document summary: don't prefix with "/". That shall be done by fronte…
Browse files Browse the repository at this point in the history
…nd if and when needed

#451
  • Loading branch information
teosarca committed Jun 12, 2017
1 parent 641f6f3 commit 62ace33
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ public Object calculateValue(final Document document)
return "";
}

return " / " + summary;
return summary;
// return " / " + summary; // don't prefix with "/". That shall be done by frontend if and when needed
}

private static interface FieldValueExtractor
Expand Down

0 comments on commit 62ace33

Please sign in to comment.