Skip to content

Commit

Permalink
Display classification description #153
Browse files Browse the repository at this point in the history
  • Loading branch information
sim51 committed Oct 1, 2020
1 parent 0a82bac commit 8da6b69
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions client/js/components/classification/Classification.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,10 @@ import {

const defaultSelectors = require('../../../config/defaultVizSelectors.json');

const ClassificationWell = ({groupsCount, itemsCount, unclassifiedItemsCount, completion}) => (
const ClassificationWell = ({description, groupsCount, itemsCount, unclassifiedItemsCount, completion}) => (
<div className="well">
<p>
<strong>{`${groupsCount} groups for ${itemsCount} items.`}</strong>
</p>
<p>{description}</p>
<p>{`${groupsCount} groups for ${itemsCount} items.`}</p>
<p>
<small>{`${itemsCount -
unclassifiedItemsCount} / ${itemsCount} (-${unclassifiedItemsCount}) classified items (${completion} %)`}</small>
Expand Down

0 comments on commit 8da6b69

Please sign in to comment.