Skip to content

Commit

Permalink
pkp/pkp-lib#9744 Re-add missing tooltip in StatsPage story
Browse files Browse the repository at this point in the history
  • Loading branch information
blesildaramirez committed Aug 29, 2024
1 parent a2a7595 commit 390263f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/Container/StatsPage.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,14 @@ const EditorialStatsPageWithDataAndTemplate = {
</TableHeader>
<TableBody>
<TableRow v-for="(row, index) in tableRows" :key="index">
<TableCell>{{ row.name }}</TableCell>
<TableCell>
{{ row.name }}
<Tooltip
v-if="row.description"
:label="'Description for ' + row.name"
:tooltip="row.description"
></Tooltip>
</TableCell>
<TableCell>{{ row.dateRange }}</TableCell>
<TableCell>{{ row.total }}</TableCell>
</TableRow>
Expand Down

0 comments on commit 390263f

Please sign in to comment.